{ "$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" ] }