Virtual IBAN details
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VirtualIban", "title": "VirtualIban", "type": "object", "description": "Virtual IBAN details", "properties": { "vibanId": { "type": "string", "description": "Unique VIBAN identifier" }, "iban": { "type": "string", "description": "The virtual IBAN" }, "virtualAccountId": { "type": "string", "description": "Associated virtual account" }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "twoWay": { "type": "boolean" }, "createdAt": { "type": "string", "format": "date-time" } } }