AccountTransactionList schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/funds-account-transaction-list-schema.json", "title": "AccountTransactionList", "description": "AccountTransactionList schema from Adyen API", "type": "object", "properties": { "accountCode": { "description": "The code of the account.", "type": "string" }, "hasNextPage": { "description": "Indicates whether there is a next page of transactions available.", "type": "boolean" }, "transactions": { "description": "The list of transactions.", "items": { "$ref": "#/components/schemas/Transaction" }, "type": "array" } } }