Last active
July 13, 2021 17:05
-
-
Save azizkale/b0fc5bb95e5d4c48b6d80c05bb98230e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @swagger | |
* components: | |
* schemas: | |
* Post: | |
* type: object | |
* required: | |
* - userId | |
* - title | |
* - body | |
* properties: | |
* id: | |
* type: integer | |
* description: The Auto-generated id of a post | |
* userId: | |
* type: integer | |
* description: id of author | |
* title: | |
* type: string | |
* description: title of post | |
* body: | |
* type: string | |
* descripton: content of post * | |
* example: | |
* id: 1 | |
* userId: 1 | |
* title: my title | |
* body: my article | |
* | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment