Datadog · JSON Structure

Datadog Events Event Create Request Structure

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

Type: object Properties: 1 Required: 1
AnalyticsDashboardsMonitoringPlatformT1Visualizations

EventCreateRequest is a JSON Structure definition published by Datadog, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-structure/datadog-events-event-create-request-structure.json",
  "name": "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"
  ]
}