Webex · Schema

TaskQueue

The queue where the task belongs.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of the last queue to which the task was assigned.
name string Name of the last queue to which the task was assigned.
View JSON Schema on GitHub

JSON Schema

webex-taskqueue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskQueue",
  "title": "TaskQueue",
  "description": "The queue where the task belongs.",
  "required": [
    "id",
    "name"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the last queue to which the task was assigned.",
      "example": "89cf3b93-f020-42c6-84dc-87db6a92eae7"
    },
    "name": {
      "type": "string",
      "description": "Name of the last queue to which the task was assigned.",
      "example": "Technical Support Queue"
    }
  }
}