SGLocalAccountIdentification 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-sg-local-account-identification-schema.json", "title": "SGLocalAccountIdentification", "description": "SGLocalAccountIdentification schema from Adyen API", "type": "object", "properties": { "accountNumber": { "description": "The 4- to 19-digit bank account number, without separators or whitespace.", "maxLength": 19, "minLength": 4, "type": "string" }, "bic": { "description": "The bank's 8- or 11-character BIC or SWIFT code.", "maxLength": 11, "minLength": 8, "type": "string" }, "type": { "default": "sgLocal", "description": "**sgLocal**", "enum": [ "sgLocal" ], "type": "string" } }, "required": [ "accountNumber", "bic" ], "additionalProperties": false }