Varonis · JSON Structure

Varonis Datalert Close Alert Request Structure

CloseAlertRequest schema from Varonis DatAlert API

Type: object Properties: 3 Required: 2
Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

CloseAlertRequest is a JSON Structure definition published by Varonis, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

alertId closeReason note

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/varonis/refs/heads/main/json-structure/varonis-datalert-close-alert-request-structure.json",
  "name": "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"
  ]
}