ilert · Schema

IncidentTemplate

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

Properties

Name Type Description
id number
name string
summary string
status object
message string
sendNotification boolean
teams array
View JSON Schema on GitHub

JSON Schema

incidenttemplate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/IncidentTemplate",
  "title": "IncidentTemplate",
  "type": "object",
  "properties": {
    "id": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/IncidentStatus"
    },
    "message": {
      "type": "string"
    },
    "sendNotification": {
      "type": "boolean"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    }
  }
}