Datadog · Schema

IncidentUpdateRequest

Request body for updating an existing incident

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

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

JSON Schema

datadog-incidents-incident-update-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-update-request-schema.json",
  "title": "IncidentUpdateRequest",
  "description": "Request body for updating an existing incident",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "The incident update data",
      "required": [
        "type",
        "id",
        "attributes"
      ],
      "properties": {
        "type": {
          "type": "string",
          "description": "The resource type identifier",
          "enum": [
            "incidents"
          ]
        },
        "id": {
          "type": "string",
          "description": "The unique ID of the incident to update"
        },
        "attributes": {
          "$ref": "#/components/schemas/IncidentUpdateAttributes"
        }
      }
    }
  },
  "required": [
    "data"
  ]
}