{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankIdentification", "title": "BankIdentification", "properties": { "country": { "type": "string" }, "identification": { "type": "string" }, "identificationType": { "enum": [ "iban", "routingNumber" ], "type": "string" } }, "type": "object" }