ilert · Schema

ServiceUptimeOnly

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

Properties

Name Type Description
id number
name string
status object
description string
oneOpenIncidentOnly boolean
showUptimeHistory boolean
teams array
uptime object
View JSON Schema on GitHub

JSON Schema

serviceuptimeonly.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/ServiceUptimeOnly",
  "title": "ServiceUptimeOnly",
  "type": "object",
  "properties": {
    "id": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/ServiceStatus"
    },
    "description": {
      "type": "string"
    },
    "oneOpenIncidentOnly": {
      "type": "boolean"
    },
    "showUptimeHistory": {
      "type": "boolean"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    },
    "uptime": {
      "$ref": "#/components/schemas/ServiceUptime"
    }
  }
}