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