Montran · Schema

BatchScreeningRequest

Batch screening request

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
channelId string
transactions array
View JSON Schema on GitHub

JSON Schema

montran-batchscreeningrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchScreeningRequest",
  "title": "BatchScreeningRequest",
  "type": "object",
  "description": "Batch screening request",
  "required": [
    "channelId",
    "transactions"
  ],
  "properties": {
    "channelId": {
      "type": "string"
    },
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TransactionData"
      },
      "minItems": 1
    }
  }
}