Montran · Schema

BatchScreeningResult

Batch screening results

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
batchId string
totalScreened integer
passCount integer
hitCount integer
results array
screenedAt string
View JSON Schema on GitHub

JSON Schema

montran-batchscreeningresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchScreeningResult",
  "title": "BatchScreeningResult",
  "type": "object",
  "description": "Batch screening results",
  "properties": {
    "batchId": {
      "type": "string"
    },
    "totalScreened": {
      "type": "integer"
    },
    "passCount": {
      "type": "integer"
    },
    "hitCount": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScreeningResult"
      }
    },
    "screenedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}