Asana · Schema
ProjectSaveAsTemplateRequest
CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the new project template. |
| team | string | Sets the team of the new project template. If the project exists in an organization, specify team and not workspace. |
| workspace | string | Sets the workspace of the new project template. Only specify workspace if the project exists in a workspace. |
| public | boolean | Sets the project template to public to its team. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectSaveAsTemplateRequest",
"title": "ProjectSaveAsTemplateRequest",
"type": "object",
"required": [
"name",
"public"
],
"properties": {
"name": {
"description": "The name of the new project template.",
"type": "string",
"example": "New Project Template"
},
"team": {
"description": "Sets the team of the new project template. If the project exists in an organization, specify team and not workspace.",
"type": "string",
"example": "12345"
},
"workspace": {
"description": "Sets the workspace of the new project template. Only specify workspace if the project exists in a workspace.",
"type": "string",
"example": "12345"
},
"public": {
"description": "Sets the project template to public to its team.",
"type": "boolean",
"example": true
}
}
}