Webex · Schema

Widget

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Widget ID of the entity
type string Type of the widget. One of 'start', 'action', and 'end'
label string Label of the widget
widgetType string Either 'activity' or 'link'
View JSON Schema on GitHub

JSON Schema

webex-widget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Widget",
  "title": "Widget",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Widget ID of the entity",
      "example": "6a59e2f5-3d3d-475a-91f7-d24ac25a614b"
    },
    "type": {
      "type": "string",
      "description": "Type of the widget. One of 'start', 'action', and 'end'",
      "example": "start"
    },
    "label": {
      "type": "string",
      "description": "Label of the widget",
      "example": "New Activity Widget in Diagram"
    },
    "widgetType": {
      "type": "string",
      "description": "Either 'activity' or 'link'",
      "example": "activity"
    }
  }
}