Adyen · Schema

HULocalAccountIdentification

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

adyen-hulocalaccountidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HULocalAccountIdentification",
  "title": "HULocalAccountIdentification",
  "additionalProperties": false,
  "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"
  ]
}