diff --git a/spec/schemas/destination-list.yaml b/spec/schemas/destination-list.yaml
index f496c4a586dd778b7c10ead80e12774f0df975b7..77f35e3121f236bcd33602b08e0148be9fe3c5dd 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