{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounting-notifications-uk-local-account-identification-schema.json", "title": "UKLocalAccountIdentification", "description": "UKLocalAccountIdentification schema from Adyen API", "properties": { "accountNumber": { "description": "The 8-digit bank account number, without separators or whitespace.", "maxLength": 8, "minLength": 8, "type": "string" }, "sortCode": { "description": "The 6-digit [sort code](https://en.wikipedia.org/wiki/Sort_code), without separators or whitespace.", "maxLength": 6, "minLength": 6, "type": "string" }, "type": { "default": "ukLocal", "description": "**ukLocal**", "enum": [ "ukLocal" ], "type": "string" } }, "required": [ "type", "accountNumber", "sortCode" ], "additionalProperties": false, "type": "object" }