diff --git a/spec/schemas/destination-list.yaml b/spec/schemas/destination-list.yaml index f496c4a586dd778b7c10ead80e12774f0df975b7..7fd093f8940ae638b8e6b8114da5beff16e323d4 100644 --- a/spec/schemas/destination-list.yaml +++ b/spec/schemas/destination-list.yaml @@ -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