{ "$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-attributes-schema.json", "title": "IncidentAttributes", "description": "The attributes of an incident record", "type": "object", "properties": { "title": { "type": "string", "description": "The title of the incident describing what is affected", "example": "Example Monitor" }, "public_id": { "type": "integer", "description": "The sequential human-readable public ID of the incident within the organization", "example": 42 }, "state": { "type": "string", "description": "The current state of the incident in its lifecycle", "enum": [ "active", "stable", "resolved" ], "example": "active" }, "severity": { "type": "string", "description": "The 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": "Whether the incident is causing direct customer impact", "example": true }, "customer_impact_scope": { "type": "string", "description": "Description of the scope of customer impact for this incident", "example": "example_value" }, "customer_impact_start": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when customer impact began", "example": "example_value" }, "customer_impact_end": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when customer impact ended", "example": "example_value" }, "customer_impact_duration": { "type": "integer", "description": "Duration of customer impact in seconds", "example": 42 }, "created": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the incident was created", "example": "example_value" }, "modified": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the incident was last modified", "example": "example_value" }, "detected": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the incident was first detected", "example": "example_value" }, "resolved": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the incident was marked as resolved", "example": "example_value" }, "time_to_detect": { "type": "integer", "description": "Time in seconds from incident start to detection", "example": 42 }, "time_to_internal_response": { "type": "integer", "description": "Time in seconds from detection to first responder acknowledgement", "example": 42 }, "time_to_repair": { "type": "integer", "description": "Time in seconds from detection to resolution", "example": 42 }, "fields": { "type": "object", "description": "Custom field values for the incident as defined in organization settings", "additionalProperties": { "type": "object" } }, "notification_handles": { "type": "array", "description": "List of notification handles that were paged for this incident", "items": { "type": "object" } } } }