ilert · Schema

CallFlowNodeMetadataRouteCall

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

Properties

Name Type Description
holdAudioUrl string
targets array
callStyle string
retries integer
callTimeoutSec integer
View JSON Schema on GitHub

JSON Schema

callflownodemetadataroutecall.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/CallFlowNodeMetadataRouteCall",
  "title": "CallFlowNodeMetadataRouteCall",
  "type": "object",
  "required": [
    "targets"
  ],
  "properties": {
    "holdAudioUrl": {
      "type": "string"
    },
    "targets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CallFlowNodeMetadataCallTarget"
      }
    },
    "callStyle": {
      "type": "string",
      "enum": [
        "ORDERED",
        "RANDOM",
        "PARALLEL"
      ]
    },
    "retries": {
      "type": "integer",
      "format": "int64"
    },
    "callTimeoutSec": {
      "type": "integer",
      "format": "int64"
    }
  }
}