ilert · Schema

SeriesOption

Can either be a single time point, omitting timestamp field is allowed as it will be replaced with now() - or a series of multiple time points

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations
View JSON Schema on GitHub

JSON Schema

seriesoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/SeriesOption",
  "title": "SeriesOption",
  "type": "object",
  "description": "Can either be a single time point, omitting timestamp field is allowed as it will be replaced with now() - or a series of multiple time points",
  "oneOf": [
    {
      "$ref": "#/components/schemas/SingleTimePoint"
    },
    {
      "$ref": "#/components/schemas/MultipleTimePoint"
    }
  ]
}