ilert · Schema

EventFlowNode

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

Properties

Name Type Description
id integer
name string
nodeType string
metadata object
branches array
View JSON Schema on GitHub

JSON Schema

eventflownode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/EventFlowNode",
  "title": "EventFlowNode",
  "type": "object",
  "required": [
    "nodeType"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "nodeType": {
      "type": "string",
      "enum": [
        "ROOT",
        "SUPPORT_HOURS",
        "ROUTE_EVENT",
        "DEFINE_BRANCHES",
        "WAIT",
        "TRANSFORM"
      ]
    },
    "metadata": {
      "$ref": "#/components/schemas/EventFlowNodeMetadata"
    },
    "branches": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventFlowBranch"
      }
    }
  }
}