{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounting-notifications-iban-account-identification-schema.json", "title": "IbanAccountIdentification", "description": "IbanAccountIdentification schema from Adyen API", "properties": { "iban": { "description": "The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.", "type": "string" }, "type": { "default": "iban", "description": "**iban**", "enum": [ "iban" ], "type": "string" } }, "required": [ "type", "iban" ], "additionalProperties": false, "type": "object" }