ilert · Schema

ServiceNoIncludes

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

Properties

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

JSON Schema

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