Webex · Schema

TaskOwner

The owner of the task.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of the agent last assigned to this task.
name string Name of the agent last assigned to this task.
View JSON Schema on GitHub

JSON Schema

webex-taskowner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskOwner",
  "title": "TaskOwner",
  "required": [
    "id",
    "name"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the agent last assigned to this task.",
      "example": "e0c7611b-8035-443a-b7a8-dca9f8b8289b"
    },
    "name": {
      "type": "string",
      "description": "Name of the agent last assigned to this task.",
      "example": "Joseph Lambert"
    }
  },
  "description": "The owner of the task."
}