Webex · Schema
SingleNodeUnAvailableTimeline
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 node. |
| unAvailabilityReason | string | Reason for the Video Mesh node being unavailable (if any). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SingleNodeUnAvailableTimeline",
"title": "SingleNodeUnAvailableTimeline",
"type": "object",
"properties": {
"segmentStartTime": {
"type": "string",
"example": "2021-09-15T16:53:00Z",
"description": "Start date and time of the segment of availability data."
},
"segmentEndTime": {
"type": "string",
"example": "2021-09-15T17:53:00Z",
"description": "End date and time of the segment of availability data."
},
"availability": {
"type": "string",
"example": "Unavailable",
"description": "Availability information of the Video Mesh node."
},
"unAvailabilityReason": {
"type": "string",
"example": "Connectivity Issues to the Node",
"description": "Reason for the Video Mesh node being unavailable (if any)."
}
}
}