| 123456789101112131415161718192021222324252627282930313233343536373839 |
- openapi: 3.0.4
- info:
- title: API Documentation | ChatRPG
- version: 1.0.0
- description: API fro ChatRPG
- servers:
- - url: http://localhost:8000
- description: Development/local server
- tags:
- - name: User
- components:
- schemas:
- User:
- $ref: "./components/schemas/user.yaml"
- responses:
- "400":
- $ref: "./components/responses/400.yaml"
- "401":
- $ref: "./components/responses/401.yaml"
- "403":
- $ref: "./components/responses/403.yaml"
- "404":
- $ref: "./components/responses/404.yaml"
- "500":
- $ref: "./components/responses/500.yaml"
- securitySchemes:
- $ref: "./components/security.yaml"
- paths:
- #Users
- /user:
- post:
- $ref: "./paths/user/create.yaml"
- /user/login:
- post:
- $ref: "./paths/user/login.yaml"
|