BNY Mellon · Schema

Balance

Account balance record

Asset ServicingBankingInstitutional BankingPaymentsTreasuryWire TransfersFortune 500

Properties

Name Type Description
accountId string
balanceType string Balance type (current, available, intraday)
amount number
currency string
asOfDateTime string
openingBalance number
closingBalance number
View JSON Schema on GitHub

JSON Schema

balance-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/balance-schema.json",
  "title": "Balance",
  "type": "object",
  "description": "Account balance record",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "balanceType": {
      "type": "string",
      "description": "Balance type (current, available, intraday)"
    },
    "amount": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string"
    },
    "asOfDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "openingBalance": {
      "type": "number",
      "format": "double"
    },
    "closingBalance": {
      "type": "number",
      "format": "double"
    }
  }
}