Datadog · Schema

Event

A single event from the Datadog Events Explorer

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
id string The unique string identifier of the event
type string The resource type identifier (always 'event')
attributes object
View JSON Schema on GitHub

JSON Schema

datadog-events-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-events-event-schema.json",
  "title": "Event",
  "description": "A single event from the Datadog Events Explorer",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique string identifier of the event",
      "example": "abc-123-def"
    },
    "type": {
      "type": "string",
      "description": "The resource type identifier (always 'event')",
      "example": "metric alert"
    },
    "attributes": {
      "$ref": "#/components/schemas/EventAttributes"
    }
  }
}