Varonis · Schema

AddNoteRequest

AddNoteRequest schema from Varonis DatAlert API

Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

Properties

Name Type Description
alertId string Unique identifier of the alert to add the note to.
note string Text content of the note to add to the alert.
View JSON Schema on GitHub

JSON Schema

varonis-datalert-add-note-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-add-note-request-schema.json",
  "title": "AddNoteRequest",
  "description": "AddNoteRequest schema from Varonis DatAlert API",
  "type": "object",
  "properties": {
    "alertId": {
      "type": "string",
      "description": "Unique identifier of the alert to add the note to."
    },
    "note": {
      "type": "string",
      "description": "Text content of the note to add to the alert."
    }
  },
  "required": [
    "alertId",
    "note"
  ]
}