ilert · Schema

SupportHourException

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

Properties

Name Type Description
name string
start string
end string
supportStatus string
View JSON Schema on GitHub

JSON Schema

supporthourexception.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/SupportHourException",
  "title": "SupportHourException",
  "type": "object",
  "required": [
    "name",
    "start",
    "end",
    "supportStatus"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "start": {
      "type": "string",
      "format": "date"
    },
    "end": {
      "type": "string",
      "format": "date"
    },
    "supportStatus": {
      "type": "string",
      "enum": [
        "DURING",
        "OUTSIDE"
      ]
    }
  }
}