Webex · Schema

ScreenTimeoutObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the Screen Time object is enabled.
value number Indicates the value of screen timeout.
View JSON Schema on GitHub

JSON Schema

webex-screentimeoutobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScreenTimeoutObject",
  "title": "ScreenTimeoutObject",
  "type": "object",
  "required": [
    "enabled",
    "value"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates whether the Screen Time object is enabled."
    },
    "value": {
      "type": "number",
      "example": 400,
      "description": "Indicates the value of screen timeout."
    }
  }
}