Datadog · JSON Structure

Datadog Incidents Incident Create Attributes Structure

Attributes for creating a new incident

Type: object Properties: 8 Required: 2
AnalyticsDashboardsMonitoringPlatformT1Visualizations

IncidentCreateAttributes is a JSON Structure definition published by Datadog, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

title customer_impacted customer_impact_scope customer_impact_start severity state fields notification_handles

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-incidents-incident-create-attributes-structure.json",
  "name": "IncidentCreateAttributes",
  "description": "Attributes for creating a new incident",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "The title of the incident describing what is affected and the nature of the issue",
      "example": "Example Monitor"
    },
    "customer_impacted": {
      "type": "boolean",
      "description": "Whether the incident is causing direct customer impact (required field for all incidents)",
      "example": true
    },
    "customer_impact_scope": {
      "type": "string",
      "description": "Description of the customer groups or features affected by this incident",
      "example": "example_value"
    },
    "customer_impact_start": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when customer impact started, if known",
      "example": "example_value"
    },
    "severity": {
      "type": "string",
      "description": "The severity level of the incident using SEV-N notation",
      "enum": [
        "SEV-1",
        "SEV-2",
        "SEV-3",
        "SEV-4",
        "SEV-5",
        "UNKNOWN"
      ],
      "example": "SEV-1"
    },
    "state": {
      "type": "string",
      "description": "The initial state of the incident",
      "enum": [
        "active",
        "stable",
        "resolved"
      ],
      "default": "active",
      "example": "active"
    },
    "fields": {
      "type": "object",
      "description": "Custom fields for the incident as configured in your organization settings",
      "additionalProperties": {
        "type": "object"
      }
    },
    "notification_handles": {
      "type": "array",
      "description": "List of user and team notification handles to page on incident creation",
      "items": {
        "type": "object",
        "properties": {
          "handle": {
            "type": "string",
            "description": "The Datadog handle or integration channel to notify"
          },
          "display_name": {
            "type": "string",
            "description": "The display name for this notification handle"
          }
        }
      }
    }
  },
  "required": [
    "title",
    "customer_impacted"
  ]
}