TD Bank · Schema

TD Bank FDX Customer

Account AggregationAMLAkoyaBankingBank Secrecy ActBill PaymentConsentConsumer BankingFDXFinancial ServicesMerchant SolutionsNotificationsOpen BankingPaymentsRewardsTax FormsToken ManagementTransactions

Properties

Name Type Description
customerId string
name object
addresses array
telephones array
email array
View JSON Schema on GitHub

JSON Schema

td-bank-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.td.com/schemas/customer.json",
  "title": "TD Bank FDX Customer",
  "type": "object",
  "required": ["customerId", "name"],
  "properties": {
    "customerId": { "type": "string" },
    "name": {
      "type": "object",
      "properties": {
        "first": { "type": "string" },
        "middle": { "type": "string" },
        "last": { "type": "string" }
      }
    },
    "addresses": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "line1": { "type": "string" },
          "line2": { "type": "string" },
          "city": { "type": "string" },
          "region": { "type": "string" },
          "postalCode": { "type": "string" },
          "country": { "type": "string" },
          "type": { "type": "string" }
        }
      }
    },
    "telephones": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "number": { "type": "string" },
          "type": { "type": "string" }
        }
      }
    },
    "email": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": { "type": "string", "format": "email" },
          "type": { "type": "string" }
        }
      }
    }
  }
}