Webex · Schema
ComplianceStatusResponseLocationStatusObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| state | object | Configuration stage that was last completed. The order of precedence is `LOCATION_SETUP`, `ALERTS`, `NETWORK_ELEMENTS`, `ROUTING_ENABLE`. If at least one location is `LOCATION_SETUP`, then `locationSt |
| count | number | Total count of locations available in the organization. |
| locations | array | List of locations that have completed the least amount of setup. Only 4 locations are included in this list. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ComplianceStatusResponseLocationStatusObject",
"title": "ComplianceStatusResponseLocationStatusObject",
"type": "object",
"properties": {
"state": {
"$ref": "#/components/schemas/UpdateComplianceStatusResponseLocationStateEnum",
"description": "Configuration stage that was last completed. The order of precedence is `LOCATION_SETUP`, `ALERTS`, `NETWORK_ELEMENTS`, `ROUTING_ENABLE`. If at least one location is `LOCATION_SETUP`, then `locationState` will be set to `LOCATION_SETUP`. Otherwise, `locationState` will check for the next precedence option and at least one location should have that option."
},
"count": {
"type": "number",
"example": 2,
"description": "Total count of locations available in the organization."
},
"locations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ComplianceStatusResponseRedSkyClientLocation"
},
"description": "List of locations that have completed the least amount of setup. Only 4 locations are included in this list."
}
}
}