{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-hk-local-account-identification-schema.json", "title": "HKLocalAccountIdentification", "description": "HKLocalAccountIdentification schema from Adyen API", "type": "object", "properties": { "accountNumber": { "description": "The 9- to 15-character bank account number (alphanumeric), without separators or whitespace. Starts with the 3-digit branch code.", "maxLength": 15, "minLength": 9, "type": "string" }, "clearingCode": { "description": "The 3-digit clearing code, without separators or whitespace.", "maxLength": 3, "minLength": 3, "type": "string" }, "type": { "default": "hkLocal", "description": "**hkLocal**", "enum": [ "hkLocal" ], "type": "string" } }, "required": [ "type", "accountNumber", "clearingCode" ], "additionalProperties": false }