Montran · Schema

EntityScreeningResult

Entity screening result

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
screeningId string
result string
matchCount integer
matches array
screenedAt string
View JSON Schema on GitHub

JSON Schema

montran-entityscreeningresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityScreeningResult",
  "title": "EntityScreeningResult",
  "type": "object",
  "description": "Entity screening result",
  "properties": {
    "screeningId": {
      "type": "string"
    },
    "result": {
      "type": "string",
      "enum": [
        "CLEAR",
        "HIT",
        "POSSIBLE_HIT"
      ]
    },
    "matchCount": {
      "type": "integer"
    },
    "matches": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScreeningMatch"
      }
    },
    "screenedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}