Adyen · JSON Structure

Accounting Notifications Br Local Account Identification Structure

BRLocalAccountIdentification schema from Adyen API

Type: object Properties: 4 Required: 4
PaymentsFinancial ServicesFintech

BRLocalAccountIdentification is a JSON Structure definition published by Adyen, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountNumber bankCode branchNumber type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/accounting-notifications-br-local-account-identification-structure.json",
  "description": "BRLocalAccountIdentification schema from Adyen API",
  "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"
  ],
  "additionalProperties": false,
  "type": "object",
  "name": "BRLocalAccountIdentification"
}