ilert · Schema

IncidentUpdate

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Properties

Name Type Description
id string
content string
creator object
incidentStatus object
sendNotification boolean
createdAt string
View JSON Schema on GitHub

JSON Schema

incidentupdate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/IncidentUpdate",
  "title": "IncidentUpdate",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "content": {
      "type": "string"
    },
    "creator": {
      "$ref": "#/components/schemas/UserRel"
    },
    "incidentStatus": {
      "$ref": "#/components/schemas/IncidentStatus"
    },
    "sendNotification": {
      "type": "boolean"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}