ilert · Schema

TimeOfWeek

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

Properties

Name Type Description
dayOfWeek string
time string
View JSON Schema on GitHub

JSON Schema

timeofweek.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/TimeOfWeek",
  "title": "TimeOfWeek",
  "required": [
    "dayOfWeek",
    "time"
  ],
  "type": "object",
  "properties": {
    "dayOfWeek": {
      "type": "string",
      "enum": [
        "MONDAY",
        "TUESDAY",
        "WEDNESDAY",
        "THURSDAY",
        "FRIDAY",
        "SATURDAY",
        "SUNDAY"
      ]
    },
    "time": {
      "type": "string",
      "format": "15:00"
    }
  }
}