Avaloq · Schema

TransactionList

Paginated list of transactions

BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management

Properties

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

JSON Schema

banking-transaction-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avaloq/refs/heads/main/json-schema/banking-transaction-list-schema.json",
  "title": "TransactionList",
  "description": "Paginated list of transactions",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "total": {
      "type": "integer",
      "example": 124
    },
    "offset": {
      "type": "integer",
      "example": 0
    }
  }
}