Financial institution identification
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FinancialInstitution", "title": "FinancialInstitution", "type": "object", "description": "Financial institution identification", "properties": { "bic": { "type": "string", "description": "Bank Identifier Code (SWIFT/BIC)", "pattern": "^[A-Z]{4}[A-Z]{2}[A-Z0-9]{2}([A-Z0-9]{3})?$" }, "name": { "type": "string", "description": "Name of the financial institution" }, "clearingSystemMemberId": { "type": "string", "description": "Clearing system member identification" } } }