| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- module.exports = {
- components: {
- schemas: {
- id: {
- type: "string",
- description: "An id of a user"
- },
- User: {
- type: "object",
- properties: {
- name: {
- type: "string"
- },
- email: {
- type: "string"
- },
- password: {
- type: "string"
- },
- tokens: {
- type: "array",
- items: {
- type: "string"
- }
- }
- }
- },
- Token: {
- type: "object",
- properties: {
- token: {
- type: "string"
- },
- userId: {
- type: "string"
- }
- }
- }
- }
- }
- }
|