{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-paginated-get-card-order-response-schema.json", "title": "PaginatedGetCardOrderResponse", "description": "PaginatedGetCardOrderResponse schema from Adyen API", "type": "object", "properties": { "cardOrders": { "description": "Contains objects with information about card orders.", "items": { "$ref": "#/components/schemas/CardOrder" }, "type": "array" }, "hasNext": { "description": "Indicates whether there are more items on the next page.", "type": "boolean" }, "hasPrevious": { "description": "Indicates whether there are more items on the previous page.", "type": "boolean" } }, "required": [ "hasPrevious", "hasNext" ] }