ilert · Schema

CallFlow

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

Properties

Name Type Description
id integer
name string
language string
assignedNumber object
teams array
root object
View JSON Schema on GitHub

JSON Schema

callflow.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/CallFlow",
  "title": "CallFlow",
  "type": "object",
  "required": [
    "name",
    "language",
    "root"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "language": {
      "type": "string",
      "enum": [
        "de",
        "en"
      ]
    },
    "assignedNumber": {
      "$ref": "#/components/schemas/CallFlowNumber"
    },
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamRel"
      }
    },
    "root": {
      "$ref": "#/components/schemas/CallFlowNode"
    }
  }
}