Webex · Schema

WorkItemParams

Work item channel parameters.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string Must be `work-item-form` for work item channel parameters.
message object
View JSON Schema on GitHub

JSON Schema

webex-workitemparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkItemParams",
  "title": "WorkItemParams",
  "type": "object",
  "description": "Work item channel parameters.",
  "required": [
    "type",
    "message"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "work-item-form"
      ],
      "description": "Must be `work-item-form` for work item channel parameters.",
      "example": "work-item-form"
    },
    "message": {
      "$ref": "#/components/schemas/WorkItemForm"
    }
  }
}