Bank of America · JSON Structure

Balance Structure

Type: record Properties: 0
BankingCorporate BankingFinancePaymentsTreasuryCashProFortune 100

Balance Structure is a JSON Structure definition published by Bank of America. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/bank-of-america/json-structure/balance-structure.json",
  "title": "Balance",
  "type": "record",
  "members": [
    {
      "name": "accountId",
      "type": "string",
      "description": "Account identifier"
    },
    {
      "name": "ledgerBalance",
      "type": "number",
      "description": "Current ledger balance"
    },
    {
      "name": "availableBalance",
      "type": "number",
      "description": "Available balance for transactions"
    },
    {
      "name": "collectedBalance",
      "type": "number",
      "description": "Collected balance after float"
    },
    {
      "name": "currency",
      "type": "string",
      "description": "Balance currency (ISO 4217)"
    },
    {
      "name": "asOfDate",
      "type": "string",
      "description": "Balance as of timestamp"
    }
  ]
}