Basiq · Schema

AccountListResponse

AustraliaBankingCDRFinancial DataFintechOpen BankingTransactions

Properties

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

JSON Schema

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