Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save azizkale/b0fc5bb95e5d4c48b6d80c05bb98230e to your computer and use it in GitHub Desktop.
Save azizkale/b0fc5bb95e5d4c48b6d80c05bb98230e to your computer and use it in GitHub Desktop.
/**
* @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