ilert · Schema

Schedule

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

Properties

Name Type Description
id integer
name string
timezone object
type string
scheduleLayers array
shifts array
showGaps boolean
defaultShiftDuration string
currentShift object
nextShift object
teams array
View JSON Schema on GitHub

JSON Schema

schedule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/Schedule",
  "title": "Schedule",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "timezone": {
      "$ref": "#/components/schemas/TimeZone"
    },
    "type": {
      "type": "string",
      "enum": [
        "STATIC",
        "RECURRING"
      ]
    },
    "scheduleLayers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScheduleLayerConfig"
      }
    },
    "shifts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ShiftRel"
      }
    },
    "showGaps": {
      "type": "boolean"
    },
    "defaultShiftDuration": {
      "type": "string",
      "format": "P7D"
    },
    "currentShift": {
      "$ref": "#/components/schemas/ShiftRel"
    },
    "nextShift": {
      "$ref": "#/components/schemas/ShiftRel"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    }
  }
}