{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/funds-transaction-list-for-account-schema.json", "title": "TransactionListForAccount", "description": "TransactionListForAccount schema from Adyen API", "type": "object", "properties": { "accountCode": { "description": "The account for which to retrieve the transactions.", "type": "string" }, "page": { "description": "The page of transactions to retrieve.\nEach page lists fifty (50) transactions. The most recent transactions are included on page 1.", "format": "int32", "type": "integer" } }, "required": [ "accountCode", "page" ] }