Asana · Schema

TaskDuplicateRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
name string The name of the new task.
include string A comma-separated list of fields that will be duplicated to the new task. ##### Fields - assignee - attachments - dates - dependencies - followers - notes - parent - projects - subtasks - tags
View JSON Schema on GitHub

JSON Schema

asana-taskduplicaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskDuplicateRequest",
  "title": "TaskDuplicateRequest",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the new task.",
      "type": "string",
      "example": "New Task Name"
    },
    "include": {
      "description": "A comma-separated list of fields that will be duplicated to the new task.\n##### Fields\n- assignee\n- attachments\n- dates\n- dependencies\n- followers\n- notes\n- parent\n- projects\n- subtasks\n- tags",
      "type": "string",
      "pattern": "([notes|assignee|subtasks|attachments|tags|followers|projects|dates|dependencies|parent])(,\\1)*",
      "example": [
        "notes,assignee,subtasks,attachments,tags,followers,projects,dates,dependencies,parent"
      ]
    }
  }
}