Request body for creating a new incident
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-incidents-incident-create-request-schema.json", "title": "IncidentCreateRequest", "description": "Request body for creating a new incident", "type": "object", "properties": { "data": { "type": "object", "description": "The incident creation data", "required": [ "type", "attributes" ], "properties": { "type": { "type": "string", "description": "The resource type identifier for incidents", "enum": [ "incidents" ] }, "attributes": { "$ref": "#/components/schemas/IncidentCreateAttributes" } } } }, "required": [ "data" ] }