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