ilert · Schema

AlertSourceTemplateElement

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

Properties

Name Type Description
type string
val string
func string
args array
View JSON Schema on GitHub

JSON Schema

alertsourcetemplateelement.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/AlertSourceTemplateElement",
  "title": "AlertSourceTemplateElement",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "TEXT",
        "VAR",
        "RAW"
      ]
    },
    "val": {
      "type": "string"
    },
    "func": {
      "type": "string"
    },
    "args": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertSourceTemplateElementArg"
      }
    }
  }
}