TD Bank · Schema

TD Bank FDX Account

Account AggregationAMLAkoyaBankingBank Secrecy ActBill PaymentConsentConsumer BankingFDXFinancial ServicesMerchant SolutionsNotificationsOpen BankingPaymentsRewardsTax FormsToken ManagementTransactions

Properties

Name Type Description
accountId string
accountType string
accountCategory string
displayName string
accountNumberDisplay string
currency string
currentBalance number
availableBalance number
openingDayBalance number
interestRate number
status string
View JSON Schema on GitHub

JSON Schema

td-bank-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.td.com/schemas/account.json",
  "title": "TD Bank FDX Account",
  "type": "object",
  "required": ["accountId", "accountType"],
  "properties": {
    "accountId": { "type": "string" },
    "accountType": { "type": "string" },
    "accountCategory": { "type": "string" },
    "displayName": { "type": "string" },
    "accountNumberDisplay": { "type": "string" },
    "currency": { "type": "string" },
    "currentBalance": { "type": "number" },
    "availableBalance": { "type": "number" },
    "openingDayBalance": { "type": "number" },
    "interestRate": { "type": "number" },
    "status": { "type": "string", "enum": ["OPEN", "CLOSED", "RESTRICTED", "PENDING_OPEN", "PENDING_CLOSE"] }
  }
}