Avaloq · JSON Structure

Banking Account List Structure

Paginated list of accounts

Type: object Properties: 3
BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management

AccountList is a JSON Structure definition published by Avaloq, describing 3 properties. It conforms to the https://json-schema.org/draft/2020-12/schema meta-schema.

Properties

data total offset

Meta-schema: https://json-schema.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avaloq/refs/heads/main/json-schema/banking-account-list-schema.json",
  "description": "Paginated list of accounts",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Account"
      }
    },
    "total": {
      "type": "int32",
      "example": 5
    },
    "offset": {
      "type": "int32",
      "example": 0
    }
  },
  "name": "AccountList"
}