Adyen · Schema

HULocalAccountIdentification

HULocalAccountIdentification schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountNumber string The 24-digit bank account number, without separators or whitespace.
type string **huLocal**
View JSON Schema on GitHub

JSON Schema

configuration-hu-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/configuration-hu-local-account-identification-schema.json",
  "title": "HULocalAccountIdentification",
  "description": "HULocalAccountIdentification schema from Adyen API",
  "type": "object",
  "properties": {
    "accountNumber": {
      "description": "The 24-digit bank account number, without separators or whitespace.",
      "maxLength": 24,
      "minLength": 24,
      "type": "string"
    },
    "type": {
      "default": "huLocal",
      "description": "**huLocal**",
      "enum": [
        "huLocal"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "accountNumber"
  ],
  "additionalProperties": false
}