Avaloq · Schema

CustomerList

Paginated list of customers

BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management

Properties

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

JSON Schema

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