ilert · Schema

HeartbeatMonitorNoIncludes

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

Properties

Name Type Description
id integer
name string
state string
intervalSec integer
alertSummary string
createdAt string
updatedAt string
teams array
View JSON Schema on GitHub

JSON Schema

heartbeatmonitornoincludes.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/HeartbeatMonitorNoIncludes",
  "title": "HeartbeatMonitorNoIncludes",
  "type": "object",
  "required": [
    "name",
    "intervalSec"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "default": "UNKNOWN",
      "enum": [
        "UNKNOWN",
        "HEALTHY",
        "OVERDUE"
      ]
    },
    "intervalSec": {
      "type": "integer",
      "format": "int32",
      "minimum": 25,
      "maximum": 2678400
    },
    "alertSummary": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "ISO-8601"
    },
    "updatedAt": {
      "type": "string",
      "format": "ISO-8601"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    }
  }
}