Paginated transaction list
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/bank-of-new-york-mellon/json-schema/transactionlistresponse-schema.json", "title": "TransactionListResponse", "type": "object", "description": "Paginated transaction list", "properties": { "transactions": { "type": "array", "items": { "$ref": "#/components/schemas/Transaction" } }, "totalCount": { "type": "integer" }, "pageSize": { "type": "integer" } } }