{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SubscriptionPagedQueryResponse", "title": "SubscriptionPagedQueryResponse", "type": "object", "description": "Paginated response containing a list of subscriptions.", "required": [ "limit", "offset", "count", "total", "results" ], "properties": { "limit": { "type": "integer" }, "offset": { "type": "integer" }, "count": { "type": "integer" }, "total": { "type": "integer" }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/Subscription" } } } }