This commit is contained in:
Kilian Hofmann 2024-07-27 17:05:00 +02:00
parent 4dcb7531d3
commit 7144b017b3
2 changed files with 24 additions and 5 deletions

View File

@ -182,6 +182,15 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/PostCreateRequest"
parameters:
- in: query
name: l
schema:
type: integer
minimum: 0
maximum: 30
default: 10
description: The number of items to return.
responses:
200:
description: Success.
@ -275,6 +284,14 @@ paths:
schema:
type: integer
format: int14
- in: query
name: l
schema:
type: integer
minimum: 0
maximum: 30
default: 10
description: The number of items to return.
responses:
200:
description: Success.
@ -720,8 +737,6 @@ components:
properties:
content:
type: string
limit:
type: number
securitySchemes:
BasicAuth:
type: apiKey

File diff suppressed because one or more lines are too long