ilert · Schema

OnCall

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

Properties

Name Type Description
user object
escalationPolicy object
schedule object
start string
end string
escalationLevel number
View JSON Schema on GitHub

JSON Schema

oncall.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/OnCall",
  "title": "OnCall",
  "type": "object",
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User"
    },
    "escalationPolicy": {
      "$ref": "#/components/schemas/EscalationPolicy"
    },
    "schedule": {
      "$ref": "#/components/schemas/ScheduleRel"
    },
    "start": {
      "type": "string",
      "format": "date-time"
    },
    "end": {
      "type": "string",
      "format": "date-time"
    },
    "escalationLevel": {
      "type": "number"
    }
  }
}