Avaloq · Schema

AccountList

Paginated list of accounts

BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management

Properties

Name Type Description
data array
total integer
offset integer
View JSON Schema on GitHub

JSON Schema

avaloq-accountlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountList",
  "title": "AccountList",
  "type": "object",
  "description": "Paginated list of accounts",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Account"
      }
    },
    "total": {
      "type": "integer",
      "example": 5
    },
    "offset": {
      "type": "integer",
      "example": 0
    }
  }
}