Basiq · Schema

TransactionListResponse

AustraliaBankingCDRFinancial DataFintechOpen BankingTransactions

Properties

Name Type Description
type string
data array
size integer
totalCount integer
View JSON Schema on GitHub

JSON Schema

transactionlistresponse.json Raw ↑
{
  "$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"
    }
  }
}