{ "$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" ] }