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" } } } } } }