Adyen · Schema

CALocalAccountIdentification

CALocalAccountIdentification schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountNumber string The 5- to 12-digit bank account number, without separators or whitespace.
accountType string The bank account type. Possible values: **checking** or **savings**. Defaults to **checking**.
institutionNumber string The 3-digit institution number, without separators or whitespace.
transitNumber string The 5-digit transit number, without separators or whitespace.
type string **caLocal**
View JSON Schema on GitHub

JSON Schema

transfers-ca-local-account-identification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-ca-local-account-identification-schema.json",
  "title": "CALocalAccountIdentification",
  "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
}