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

feat(api#87): Pagination for listing destinations

parent 90b6c6ad
No related branches found
No related tags found
No related merge requests found
...@@ -3,9 +3,26 @@ type: object ...@@ -3,9 +3,26 @@ type: object
required: required:
- destinations - destinations
properties: 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: destinations:
type: array type: array
minItems: 0
items: items:
$ref: './destination-private.yaml' $ref: './destination-private.yaml'
description: Eine Auflistung aller selbst angelegten Zustellpunkte 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