Webex · Schema

ClusterAvailableTimeline

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
segmentStartTime string Start date and time of the segment of availability data.
segmentEndTime string End date and time of the segment of availability data.
availability string Availability information of the Video Mesh cluster.
noOfOnlineNodes number Number of nodes that are online.
noOfOfflineNodes number Number of nodes that are offline.
totalNodes number Total number of nodes in the Video Mesh cluster.
View JSON Schema on GitHub

JSON Schema

webex-clusteravailabletimeline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterAvailableTimeline",
  "title": "ClusterAvailableTimeline",
  "type": "object",
  "properties": {
    "segmentStartTime": {
      "type": "string",
      "example": "2021-09-15T15:53:00Z",
      "description": "Start date and time of the segment of availability data."
    },
    "segmentEndTime": {
      "type": "string",
      "example": "2021-09-15T16:53:00Z",
      "description": "End date and time of the segment of availability data."
    },
    "availability": {
      "type": "string",
      "example": "Available",
      "description": "Availability information of the Video Mesh cluster."
    },
    "noOfOnlineNodes": {
      "type": "number",
      "example": 1,
      "description": "Number of nodes that are online."
    },
    "noOfOfflineNodes": {
      "type": "number",
      "example": 1,
      "description": "Number of nodes that are offline."
    },
    "totalNodes": {
      "type": "number",
      "example": 2,
      "description": "Total number of nodes in the Video Mesh cluster."
    }
  }
}