ilert · Schema

CallFlowNodeMetadataPinCode

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

Properties

Name Type Description
textMessage string
customAudioUrl string
codes array
language string
retries integer
aiVoiceModel string
View JSON Schema on GitHub

JSON Schema

callflownodemetadatapincode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/CallFlowNodeMetadataPinCode",
  "title": "CallFlowNodeMetadataPinCode",
  "type": "object",
  "required": [
    "codes"
  ],
  "properties": {
    "textMessage": {
      "type": "string"
    },
    "customAudioUrl": {
      "type": "string"
    },
    "codes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CallFlowNodeMetadataCode"
      }
    },
    "language": {
      "type": "string",
      "enum": [
        "en",
        "de",
        "fr",
        "es",
        "nl",
        "ru",
        "it"
      ]
    },
    "retries": {
      "type": "integer",
      "format": "int64"
    },
    "aiVoiceModel": {
      "type": "string",
      "enum": [
        "emma",
        "liam",
        "isabelle",
        "gordon",
        "ivy",
        "ellen"
      ]
    }
  }
}