ilert · Schema

CallFlowBranch

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

Properties

Name Type Description
id integer
branchType string
condition string
target object
View JSON Schema on GitHub

JSON Schema

callflowbranch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/CallFlowBranch",
  "title": "CallFlowBranch",
  "type": "object",
  "required": [
    "branchType"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "branchType": {
      "type": "string",
      "enum": [
        "BRANCH",
        "CATCH_ALL",
        "ANSWERED"
      ]
    },
    "condition": {
      "type": "string"
    },
    "target": {
      "$ref": "#/components/schemas/CallFlowNode"
    }
  }
}