Bank of America · Schema

AccountListResponse

Paginated list of accounts

BankingCorporate BankingFinancePaymentsTreasuryCashProFortune 100

Properties

Name Type Description
accounts array
totalCount integer Total number of accounts
pageSize integer
offset integer
View JSON Schema on GitHub

JSON Schema

accountlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bank-of-america/json-schema/accountlistresponse-schema.json",
  "title": "AccountListResponse",
  "type": "object",
  "description": "Paginated list of accounts",
  "properties": {
    "accounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Account"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of accounts"
    },
    "pageSize": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    }
  }
}