added api docs

This commit is contained in:
Arseni
2026-02-24 21:26:31 +03:00
parent 0646f55189
commit fa54088b25
87 changed files with 2299 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
components:
schemas:
Describable:
type: object
additionalProperties: false
required:
- name
properties:
name:
type: string
description:
type: string
nullable: true

View File

@@ -0,0 +1,16 @@
components:
schemas:
Money:
type: object
additionalProperties: false
required:
- amount
- currency
properties:
amount:
type: string
description: Decimal string amount.
example: '125.50'
currency:
type: string
example: USD

View File

@@ -0,0 +1,8 @@
components:
schemas:
CursorPageResponse:
type: object
additionalProperties: false
properties:
next_cursor:
type: string