Webex · Schema
availabilitySegment
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| segmentStartTime | string | Start time of the availability segment. |
| segmentEndTime | string | End time of the availability segment. |
| onlineNodeCount | integer | Number of online nodes in the cluster in the segment. |
| offlineNodeCount | integer | Number of offline nodes in the cluster in the segment. |
| totalNodeCount | integer | Total number of nodes in the cluster in the segment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/availabilitySegment",
"title": "availabilitySegment",
"type": "object",
"properties": {
"segmentStartTime": {
"type": "string",
"format": "date-time",
"example": "2026-01-01T00:00:00Z",
"description": "Start time of the availability segment."
},
"segmentEndTime": {
"type": "string",
"format": "date-time",
"example": "2026-01-02T00:00:00Z",
"description": "End time of the availability segment."
},
"onlineNodeCount": {
"type": "integer",
"example": 2,
"description": "Number of online nodes in the cluster in the segment."
},
"offlineNodeCount": {
"type": "integer",
"example": 0,
"description": "Number of offline nodes in the cluster in the segment."
},
"totalNodeCount": {
"type": "integer",
"example": 2,
"description": "Total number of nodes in the cluster in the segment."
}
}
}