ilert · Schema

AlertSourcePriorityTemplateMapping

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

Properties

Name Type Description
value string
priority string
View JSON Schema on GitHub

JSON Schema

alertsourceprioritytemplatemapping.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/AlertSourcePriorityTemplateMapping",
  "title": "AlertSourcePriorityTemplateMapping",
  "required": [
    "priority",
    "value"
  ],
  "type": "object",
  "properties": {
    "value": {
      "type": "string"
    },
    "priority": {
      "type": "string",
      "enum": [
        "LOW",
        "HIGH"
      ]
    }
  }
}