{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/funds-account-transaction-list-structure.json", "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" } }, "name": "AccountTransactionList" }