Webex · Schema
ClusterAvailabilityCollection
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| orgId | string | The unique ID for the organization. |
| items | array | Availability details of the Video Mesh cluster. |
| from | string | Start date and time (inclusive) of the availability data. |
| to | string | End date and time (inclusive) of the availability data. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClusterAvailabilityCollection",
"title": "ClusterAvailabilityCollection",
"type": "object",
"properties": {
"orgId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8zNmQ4OTRmNy0yYjU3LTQzYzEtYWNlZS1kNDdlNjc3NjE0MTQ=",
"description": "The unique ID for the organization."
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ClusterAvailability"
},
"description": "Availability details of the Video Mesh cluster."
},
"from": {
"type": "string",
"example": "2021-09-15T15:53:00Z",
"description": "Start date and time (inclusive) of the availability data."
},
"to": {
"type": "string",
"example": "2021-09-15T17:53:00Z",
"description": "End date and time (inclusive) of the availability data."
}
}
}