Bank of America · JSON Structure

Account Structure

Type: record Properties: 0
BankingCorporate BankingFinancePaymentsTreasuryCashProFortune 100

Account 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/account-structure.json",
  "title": "Account",
  "type": "record",
  "members": [
    {
      "name": "accountId",
      "type": "string",
      "description": "Unique account identifier"
    },
    {
      "name": "accountNumber",
      "type": "string",
      "description": "Masked account number"
    },
    {
      "name": "accountName",
      "type": "string",
      "description": "Account display name"
    },
    {
      "name": "accountType",
      "type": "string",
      "description": "Account type (checking, savings, etc.)"
    },
    {
      "name": "currency",
      "type": "string",
      "description": "Account currency (ISO 4217)"
    },
    {
      "name": "routingNumber",
      "type": "string",
      "description": "ABA routing number"
    },
    {
      "name": "status",
      "type": "string",
      "description": "Account status"
    },
    {
      "name": "openDate",
      "type": "string",
      "description": "Date the account was opened"
    }
  ]
}