{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionListForAccount", "title": "TransactionListForAccount", "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" ], "type": "object" }