Skip to content
Snippets Groups Projects
Commit a5e7d92b authored by David Schwarzmann's avatar David Schwarzmann
Browse files

feat(api#87): Pagination for listing destinations

parent 009c26e9
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,26 @@ type: object
required:
- destinations
properties:
count:
type: integer
format: int32
description: Anzahl zurückgegebener Zustellpunkte
maximum: 500
minimum: 0
offset:
type: integer
format: int32
description: Startpunkt in der Gesamtanzahl der Zustellpunkte
minimum: 0
totalCount:
type: integer
format: int32
description: Gesamtanzahl der Zustellpunkte
minimum: 0
destinations:
type: array
minItems: 0
items:
$ref: './destination-private.yaml'
description: Eine Auflistung aller selbst angelegten Zustellpunkte
maxItems: 500
minItems: 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment