Montran · Schema

AlertResolution

Alert resolution submission

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
disposition string Resolution disposition
justification string Justification for the resolution decision
action string Action taken (for true matches)
View JSON Schema on GitHub

JSON Schema

montran-alertresolution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlertResolution",
  "title": "AlertResolution",
  "type": "object",
  "description": "Alert resolution submission",
  "required": [
    "disposition",
    "justification"
  ],
  "properties": {
    "disposition": {
      "type": "string",
      "description": "Resolution disposition",
      "enum": [
        "false_positive",
        "true_match"
      ]
    },
    "justification": {
      "type": "string",
      "description": "Justification for the resolution decision"
    },
    "action": {
      "type": "string",
      "description": "Action taken (for true matches)",
      "enum": [
        "BLOCK_TRANSACTION",
        "RELEASE_TRANSACTION",
        "ESCALATE",
        "FILE_SAR"
      ]
    }
  }
}