Webex · Schema

Task

List of tasks retrieved according to query parameters.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of the task.
attributes object
View JSON Schema on GitHub

JSON Schema

webex-task-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Task",
  "title": "Task",
  "required": [
    "attributes",
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the task.",
      "example": "93912f11-6017-404b-bf14-5331890b1797"
    },
    "attributes": {
      "$ref": "#/components/schemas/TaskAttributes"
    }
  },
  "description": "List of tasks retrieved according to query parameters."
}