{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankAccount", "title": "BankAccount", "type": "object", "description": "Bank account details", "properties": { "accountId": { "type": "string" }, "iban": { "type": "string" }, "accountNumber": { "type": "string" }, "currency": { "type": "string" }, "bankId": { "type": "string" }, "bankName": { "type": "string" }, "bankBic": { "type": "string" }, "accountName": { "type": "string" }, "availableBalance": { "type": "number", "format": "double" }, "bookedBalance": { "type": "number", "format": "double" }, "lastUpdated": { "type": "string", "format": "date-time" } } }