{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IbanAccountIdentification", "title": "IbanAccountIdentification", "additionalProperties": false, "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" ] }