{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/basiq/refs/heads/main/json-schema/transactionlistresponse.json", "title": "TransactionListResponse", "type": "object", "properties": { "type": { "type": "string", "default": "list" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Transaction" } }, "size": { "type": "integer" }, "totalCount": { "type": "integer" } } }