Montran · Schema

ScreeningResult

Transaction screening result

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
screeningId string Unique screening identifier
result string Overall screening result
matchCount integer Number of matches found
matches array
screenedAt string
latencyMs integer Screening processing time in milliseconds
View JSON Schema on GitHub

JSON Schema

montran-screeningresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreeningResult",
  "title": "ScreeningResult",
  "type": "object",
  "description": "Transaction screening result",
  "properties": {
    "screeningId": {
      "type": "string",
      "description": "Unique screening identifier"
    },
    "result": {
      "type": "string",
      "description": "Overall screening result",
      "enum": [
        "PASS",
        "HIT",
        "POSSIBLE_HIT"
      ]
    },
    "matchCount": {
      "type": "integer",
      "description": "Number of matches found"
    },
    "matches": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScreeningMatch"
      }
    },
    "screenedAt": {
      "type": "string",
      "format": "date-time"
    },
    "latencyMs": {
      "type": "integer",
      "description": "Screening processing time in milliseconds"
    }
  }
}