Asana · Schema

UserTaskListCompact

A user task list represents the tasks assigned to a particular user. It provides API access to a user’s [My Tasks](https://asana.com/guide/help/fundamentals/my-tasks) view in Asana.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string Globally unique identifier of the resource, as a string.
resource_type string The base type of this resource.
name string The name of the user task list.
owner object The owner of the user task list, i.e. the person whose My Tasks is represented by this resource.
workspace object The workspace in which the user task list is located.
View JSON Schema on GitHub

JSON Schema

asana-usertasklistcompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserTaskListCompact",
  "title": "UserTaskListCompact",
  "description": "A user task list represents the tasks assigned to a particular user. It provides API access to a user\u2019s [My Tasks](https://asana.com/guide/help/fundamentals/my-tasks) view in Asana.",
  "type": "object",
  "properties": {
    "gid": {
      "description": "Globally unique identifier of the resource, as a string.",
      "type": "string",
      "readOnly": true,
      "example": "12345",
      "x-insert-after": false
    },
    "resource_type": {
      "description": "The base type of this resource.",
      "type": "string",
      "readOnly": true,
      "example": "user_task_list",
      "x-insert-after": "gid"
    },
    "name": {
      "description": "The name of the user task list.",
      "type": "string",
      "example": "My Tasks in My Workspace"
    },
    "owner": {
      "description": "The owner of the user task list, i.e. the person whose My Tasks is represented by this resource.",
      "readOnly": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/UserCompact"
        }
      ]
    },
    "workspace": {
      "description": "The workspace in which the user task list is located.",
      "readOnly": true,
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceCompact"
        }
      ]
    }
  }
}