Adyen · Schema

BRLocalAccountIdentification

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountNumber string The bank account number (without separators or whitespace).
bankCode string The 3-digit Brazilian bank code (with leading zeros).
branchNumber string The bank account branch number (without separators or whitespace).
type string **brLocal**
View JSON Schema on GitHub

JSON Schema

adyen-brlocalaccountidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BRLocalAccountIdentification",
  "title": "BRLocalAccountIdentification",
  "additionalProperties": false,
  "properties": {
    "accountNumber": {
      "description": "The bank account number (without separators or whitespace).",
      "maxLength": 10,
      "minLength": 1,
      "type": "string"
    },
    "bankCode": {
      "description": "The 3-digit Brazilian bank code (with leading zeros).",
      "maxLength": 3,
      "minLength": 3,
      "type": "string"
    },
    "branchNumber": {
      "description": "The bank account branch number (without separators or whitespace).",
      "maxLength": 4,
      "minLength": 1,
      "type": "string"
    },
    "type": {
      "default": "brLocal",
      "description": "**brLocal**",
      "enum": [
        "brLocal"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "branchNumber",
    "accountNumber",
    "bankCode"
  ]
}