Varonis · Schema

AlertedEventsResponse

AlertedEventsResponse schema from Varonis DatAlert API

Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

Properties

Name Type Description
events array Array of event objects associated with the specified alert.
totalCount integer Total number of events associated with the alert.
View JSON Schema on GitHub

JSON Schema

varonis-datalert-alerted-events-response-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-alerted-events-response-schema.json",
  "title": "AlertedEventsResponse",
  "description": "AlertedEventsResponse schema from Varonis DatAlert API",
  "type": "object",
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertedEvent"
      },
      "description": "Array of event objects associated with the specified alert."
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of events associated with the alert."
    }
  }
}