Webex · Schema

DeviceSettingsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
customizations object Indicates the customization object of the device settings.
customEnabled boolean Indicates if customization is allowed at a location level. If `true`, customized at a location level. If `false`, not customized; uses customer-level configuration.
updateInProgress boolean Customer devices setting update status. If `true`, an update is in progress (no further changes are allowed). `If false`, no update in progress (changes are allowed).
deviceCount number Number of devices that will be updated.
lastUpdateTime number Indicates the last updated time.
View JSON Schema on GitHub

JSON Schema

webex-devicesettingsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceSettingsObject",
  "title": "DeviceSettingsObject",
  "type": "object",
  "required": [
    "customizations",
    "customEnabled",
    "updateInProgress",
    "deviceCount",
    "lastUpdateTime"
  ],
  "properties": {
    "customizations": {
      "$ref": "#/components/schemas/CustomizationDeviceLevelObject",
      "description": "Indicates the customization object of the device settings."
    },
    "customEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates if customization is allowed at a location level. If `true`, customized at a location level. If `false`, not customized; uses customer-level configuration."
    },
    "updateInProgress": {
      "type": "boolean",
      "example": true,
      "description": "Customer devices setting update status. If `true`, an update is in progress (no further changes are allowed). `If false`, no update in progress (changes are allowed)."
    },
    "deviceCount": {
      "type": "number",
      "example": 9,
      "description": "Number of devices that will be updated."
    },
    "lastUpdateTime": {
      "type": "number",
      "example": 1659624763665,
      "description": "Indicates the last updated time."
    }
  }
}