Asana · Schema

TaskTemplateRecipeCompact

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
name string Name of the task that will be created from this template.
task_resource_subtype string The subtype of the task that will be created from this template.
View JSON Schema on GitHub

JSON Schema

asana-tasktemplaterecipecompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskTemplateRecipeCompact",
  "title": "TaskTemplateRecipeCompact",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the task that will be created from this template.",
      "type": "string",
      "example": "Bug Report"
    },
    "task_resource_subtype": {
      "type": "string",
      "description": "The subtype of the task that will be created from this template.",
      "enum": [
        "default_task",
        "milestone_task",
        "approval_task"
      ],
      "example": "default_task"
    }
  }
}