Cisco Voice Portal · Schema

HealthStatus

Contact CenterIVRTelephonyVoiceVXML

Properties

Name Type Description
serverName string
status string
uptime string Server uptime duration
version string
activeCalls integer
maxCalls integer Maximum concurrent call capacity
sipStackStatus string
cpuUsage number
memoryUsage number
timestamp string
View JSON Schema on GitHub

JSON Schema

cisco-voice-portal-call-control-health-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HealthStatus",
  "type": "object",
  "properties": {
    "serverName": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "uptime": {
      "type": "string",
      "description": "Server uptime duration"
    },
    "version": {
      "type": "string"
    },
    "activeCalls": {
      "type": "integer"
    },
    "maxCalls": {
      "type": "integer",
      "description": "Maximum concurrent call capacity"
    },
    "sipStackStatus": {
      "type": "string"
    },
    "cpuUsage": {
      "type": "number"
    },
    "memoryUsage": {
      "type": "number"
    },
    "timestamp": {
      "type": "string"
    }
  }
}