Datadog · Schema
IncidentUpdateAttributes
Attributes to update on an existing incident
AnalyticsDashboardsMonitoringPlatformT1Visualizations
Properties
| Name | Type | Description |
|---|---|---|
| title | string | The updated title of the incident |
| state | string | The updated state of the incident (transitioning to resolved records resolution time) |
| severity | string | The updated severity level of the incident |
| customer_impacted | boolean | Updated flag indicating whether the incident has customer impact |
| customer_impact_scope | string | Updated description of the customer impact scope |
| customer_impact_end | string | ISO 8601 timestamp when customer impact ended (set when marking impact as resolved) |
| fields | object | Updated custom field values for the incident |
| notification_handles | array | Updated list of notification handles for the incident |
JSON Schema
{
"$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-update-attributes-schema.json",
"title": "IncidentUpdateAttributes",
"description": "Attributes to update on an existing incident",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The updated title of the incident",
"example": "Example Monitor"
},
"state": {
"type": "string",
"description": "The updated state of the incident (transitioning to resolved records resolution time)",
"enum": [
"active",
"stable",
"resolved"
],
"example": "active"
},
"severity": {
"type": "string",
"description": "The updated severity level of the incident",
"enum": [
"SEV-1",
"SEV-2",
"SEV-3",
"SEV-4",
"SEV-5",
"UNKNOWN"
],
"example": "SEV-1"
},
"customer_impacted": {
"type": "boolean",
"description": "Updated flag indicating whether the incident has customer impact",
"example": true
},
"customer_impact_scope": {
"type": "string",
"description": "Updated description of the customer impact scope",
"example": "example_value"
},
"customer_impact_end": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when customer impact ended (set when marking impact as resolved)",
"example": "example_value"
},
"fields": {
"type": "object",
"description": "Updated custom field values for the incident",
"additionalProperties": {
"type": "object"
}
},
"notification_handles": {
"type": "array",
"description": "Updated list of notification handles for the incident",
"items": {
"type": "object"
}
}
}
}