Montran · Schema

FinancialInstitution

Financial institution identification

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
bic string Bank Identifier Code (SWIFT/BIC)
name string Name of the financial institution
clearingSystemMemberId string Clearing system member identification
View JSON Schema on GitHub

JSON Schema

montran-financialinstitution-schema.json Raw ↑
{
  "$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"
    }
  }
}