Datadog · Schema

EventCreateRequest

Request body for creating a new event in the Datadog Events Explorer

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
data object The event data object
View JSON Schema on GitHub

JSON Schema

datadog-events-event-create-request-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-create-request-schema.json",
  "title": "EventCreateRequest",
  "description": "Request body for creating a new event in the Datadog Events Explorer",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "The event data object",
      "required": [
        "type",
        "attributes"
      ],
      "properties": {
        "type": {
          "type": "string",
          "description": "The resource type identifier for event creation",
          "enum": [
            "event"
          ]
        },
        "attributes": {
          "$ref": "#/components/schemas/EventCreateAttributes"
        }
      }
    }
  },
  "required": [
    "data"
  ]
}