basePath: /api/v1/ consumes: - application/json info: contact: email: alex@roese.dev name: Alex description: |- Example Swagger spec. Schemes: [http, https] title: App-Idea Rest-API Documentation version: 0.0.1 paths: /users: post: operationId: usersNewUser parameters: - description: username of the user (length 3-30) in: query name: username required: true type: string - description: email of the user (length max 200) in: query name: email required: true type: string - description: password of the user (length 6-256) in: query name: password required: true type: string produces: - application/json responses: "200": description: user created schema: example: user_hastag: XVLBZG type: object default: description: unexpected error schema: $ref: '#/definitions/errorModel' summary: Create new user tags: - user produces: - application/json securityDefinitions: api_key: in: header name: Authorization type: apiKey swagger: "2.0"