{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-paginated-get-card-order-item-response-structure.json", "description": "PaginatedGetCardOrderItemResponse schema from Adyen API", "type": "object", "properties": { "data": { "description": "List of card order items in the card order batch.", "items": { "$ref": "#/components/schemas/CardOrderItem" }, "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": [ "data", "hasPrevious", "hasNext" ], "name": "PaginatedGetCardOrderItemResponse" }