Asana · Schema

TaskTemplateCompact

A *task template* is an object that allows new tasks to be created with a predefined setup.

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 Name of the task template.
View JSON Schema on GitHub

JSON Schema

asana-tasktemplatecompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskTemplateCompact",
  "title": "TaskTemplateCompact",
  "description": "A *task template* is an object that allows new tasks to be created with a predefined setup.",
  "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": "task_template",
      "x-insert-after": "gid"
    },
    "name": {
      "description": "Name of the task template.",
      "type": "string",
      "example": "Packing list"
    }
  }
}