HULocalAccountIdentification schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-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 }