Varonis · Schema

CloseAlertRequest

CloseAlertRequest schema from Varonis DatAlert API

Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

Properties

Name Type Description
alertId string Unique identifier of the alert to close.
closeReason string Reason for closing the alert. Helps track resolution patterns.
note string Optional note to provide additional context for closing the alert.
View JSON Schema on GitHub

JSON Schema

varonis-datalert-close-alert-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/varonis/refs/heads/main/json-schema/varonis-datalert-close-alert-request-schema.json",
  "title": "CloseAlertRequest",
  "description": "CloseAlertRequest schema from Varonis DatAlert API",
  "type": "object",
  "properties": {
    "alertId": {
      "type": "string",
      "description": "Unique identifier of the alert to close."
    },
    "closeReason": {
      "type": "string",
      "enum": [
        "Resolved",
        "Misconfiguration",
        "Threat model disabled or deleted",
        "Account misclassification",
        "Legitimate activity",
        "Other"
      ],
      "description": "Reason for closing the alert. Helps track resolution patterns."
    },
    "note": {
      "type": "string",
      "description": "Optional note to provide additional context for closing the alert."
    }
  },
  "required": [
    "alertId",
    "closeReason"
  ]
}