Montran · Schema

ScreeningChannelList

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
channels array
View JSON Schema on GitHub

JSON Schema

montran-screeningchannellist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreeningChannelList",
  "title": "ScreeningChannelList",
  "type": "object",
  "properties": {
    "channels": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "channelId": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "messageFormats": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "activeLists": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "matchThreshold": {
            "type": "number",
            "format": "double",
            "description": "Minimum match score threshold"
          },
          "status": {
            "type": "string",
            "enum": [
              "active",
              "inactive"
            ]
          }
        }
      }
    }
  }
}