Datadog · Schema

IncidentCreateRequest

Request body for creating a new incident

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
data object The incident creation data
View JSON Schema on GitHub

JSON Schema

datadog-incidents-incident-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-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"
  ]
}