Adyen · JSON Structure

Transfer Webhooks Ca Local Account Identification Structure

CALocalAccountIdentification schema from Adyen API

Type: object Properties: 5 Required: 4
PaymentsFinancial ServicesFintech

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

Properties

accountNumber accountType institutionNumber transitNumber 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/transfer-webhooks-ca-local-account-identification-structure.json",
  "description": "CALocalAccountIdentification schema from Adyen API",
  "type": "object",
  "properties": {
    "accountNumber": {
      "description": "The 5- to 12-digit bank account number, without separators or whitespace.",
      "maxLength": 12,
      "minLength": 5,
      "type": "string"
    },
    "accountType": {
      "default": "checking",
      "description": "The bank account type.\n\nPossible values: **checking** or **savings**. Defaults to **checking**.",
      "enum": [
        "checking",
        "savings"
      ],
      "type": "string"
    },
    "institutionNumber": {
      "description": "The 3-digit institution number, without separators or whitespace.",
      "maxLength": 3,
      "minLength": 3,
      "type": "string"
    },
    "transitNumber": {
      "description": "The 5-digit transit number, without separators or whitespace.",
      "maxLength": 5,
      "minLength": 5,
      "type": "string"
    },
    "type": {
      "default": "caLocal",
      "description": "**caLocal**",
      "enum": [
        "caLocal"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "accountNumber",
    "institutionNumber",
    "transitNumber"
  ],
  "additionalProperties": false,
  "name": "CALocalAccountIdentification"
}