1
0

split api-definition.yaml

This commit is contained in:
Michael Hoennig
2022-08-11 09:29:15 +02:00
parent 5ebed0f75d
commit cb84efe63d
15 changed files with 370 additions and 321 deletions
@@ -0,0 +1,34 @@
components:
responses:
NotFound:
description: The specified was not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Unauthorized:
description: The current user is unknown or not authorized.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Forbidden:
description: The current user or none of the assumed or roles is granted access to the .
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
schemas:
Error:
type: object
properties:
code:
type: string
message:
type: string
required:
- code
- message