ilert · Schema
IncidentWithHistory
Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations
Properties
| Name | Type | Description |
|---|---|---|
| id | number | |
| summary | string | |
| status | object | |
| message | string | |
| sendNotification | boolean | |
| createdAt | string | |
| updatedAt | string | |
| history | array | |
| affectedServices | array | |
| resolvedOn | string | |
| subscribed | boolean | |
| affectedTeams | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.ilert.com/schemas/IncidentWithHistory",
"title": "IncidentWithHistory",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"summary": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/IncidentStatus"
},
"message": {
"type": "string"
},
"sendNotification": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
},
"history": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IncidentUpdate"
}
},
"affectedServices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"impact": {
"$ref": "#/components/schemas/ServiceStatus"
},
"service": {
"$ref": "#/components/schemas/ServiceNoIncludes"
}
}
}
},
"resolvedOn": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"subscribed": {
"type": "boolean",
"readOnly": true
},
"affectedTeams": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/TeamRel"
}
}
}
}