{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-paginated-payment-instruments-response-schema.json", "title": "PaginatedPaymentInstrumentsResponse", "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" ] }