Request body for updating an existing 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-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" ] }