{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-paginated-payment-instruments-response-structure.json", "description": "PaginatedPaymentInstrumentsResponse schema from Adyen API", "type": "object", "properties": { "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" }, "paymentInstruments": { "description": "List of payment instruments associated with the balance account.", "items": { "$ref": "#/components/schemas/PaymentInstrument" }, "type": "array" } }, "required": [ "paymentInstruments", "hasPrevious", "hasNext" ], "name": "PaginatedPaymentInstrumentsResponse" }