{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-dk-local-account-identification-schema.json", "title": "DKLocalAccountIdentification", "description": "DKLocalAccountIdentification schema from Adyen API", "type": "object", "properties": { "accountNumber": { "description": "The 4-10 digits bank account number (Kontonummer) (without separators or whitespace).", "maxLength": 10, "minLength": 4, "type": "string" }, "bankCode": { "description": "The 4-digit bank code (Registreringsnummer) (without separators or whitespace).", "maxLength": 4, "minLength": 4, "type": "string" }, "type": { "default": "dkLocal", "description": "**dkLocal**", "enum": [ "dkLocal" ], "type": "string" } }, "required": [ "type", "accountNumber", "bankCode" ], "additionalProperties": false }