Bank of America · Schema

Beneficiary

Payment beneficiary details

BankingCorporate BankingFinancePaymentsTreasuryCashProFortune 100

Properties

Name Type Description
name string Beneficiary name
accountNumber string Beneficiary account number
routingNumber string Beneficiary bank routing number (ABA)
bankName string Beneficiary bank name
bankAddress string Beneficiary bank address
swiftCode string SWIFT/BIC code for international wires
View JSON Schema on GitHub

JSON Schema

beneficiary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bank-of-america/json-schema/beneficiary-schema.json",
  "title": "Beneficiary",
  "type": "object",
  "description": "Payment beneficiary details",
  "properties": {
    "name": {
      "type": "string",
      "description": "Beneficiary name"
    },
    "accountNumber": {
      "type": "string",
      "description": "Beneficiary account number"
    },
    "routingNumber": {
      "type": "string",
      "description": "Beneficiary bank routing number (ABA)"
    },
    "bankName": {
      "type": "string",
      "description": "Beneficiary bank name"
    },
    "bankAddress": {
      "type": "string",
      "description": "Beneficiary bank address"
    },
    "swiftCode": {
      "type": "string",
      "description": "SWIFT/BIC code for international wires"
    }
  }
}