Webex · Schema
ComplianceStatusLocationStatusObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| state | object | Configuration stage that was last completed for the location in the request. The order of precedence is `LOCATION_SETUP`, `ALERTS`, `NETWORK_ELEMENTS`, `ROUTING_ENABLE`. |
| count | number | Total count of the `locations` list. |
| locations | array | Object that contains the `id` and the `name` for the location in the request. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ComplianceStatusLocationStatusObject",
"title": "ComplianceStatusLocationStatusObject",
"type": "object",
"properties": {
"state": {
"$ref": "#/components/schemas/GetComplianceStatusResponseLocationStateEnum",
"description": "Configuration stage that was last completed for the location in the request. The order of precedence is `LOCATION_SETUP`, `ALERTS`, `NETWORK_ELEMENTS`, `ROUTING_ENABLE`."
},
"count": {
"type": "number",
"example": 2,
"description": "Total count of the `locations` list."
},
"locations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ComplianceStatusResponseRedSkyClientLocation"
},
"description": "Object that contains the `id` and the `name` for the location in the request."
}
}
}