BNY Mellon · Schema

BalanceResponse

Account balances response

Asset ServicingBankingInstitutional BankingPaymentsTreasuryWire TransfersFortune 500

Properties

Name Type Description
accountId string
balances array
View JSON Schema on GitHub

JSON Schema

balanceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bank-of-new-york-mellon/json-schema/balanceresponse-schema.json",
  "title": "BalanceResponse",
  "type": "object",
  "description": "Account balances response",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "balances": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Balance"
      }
    }
  }
}