Webex · Schema

SupportAndConfiguredInfo

Support and configured information for a workspace capability.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
supported boolean Is the workspace capability supported or not.
configured boolean Is the workspace capability configured or not.
View JSON Schema on GitHub

JSON Schema

webex-supportandconfiguredinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SupportAndConfiguredInfo",
  "title": "SupportAndConfiguredInfo",
  "type": "object",
  "properties": {
    "supported": {
      "type": "boolean",
      "example": true,
      "description": "Is the workspace capability supported or not."
    },
    "configured": {
      "type": "boolean",
      "example": true,
      "description": "Is the workspace capability configured or not."
    }
  },
  "description": "Support and configured information for a workspace capability.",
  "example": {
    "supported": true,
    "configured": true
  }
}