Varonis · Schema

AlertsResponse

AlertsResponse schema from Varonis DatAlert API

Cloud SecurityComplianceData AnalyticsData GovernanceData SecurityThreat Detection

Properties

Name Type Description
alerts array Array of alert objects matching the filter criteria.
totalCount integer Total number of alerts matching the filter criteria.
View JSON Schema on GitHub

JSON Schema

varonis-datalert-alerts-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-alerts-response-schema.json",
  "title": "AlertsResponse",
  "description": "AlertsResponse schema from Varonis DatAlert API",
  "type": "object",
  "properties": {
    "alerts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Alert"
      },
      "description": "Array of alert objects matching the filter criteria."
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of alerts matching the filter criteria."
    }
  }
}