Asana · Schema
DateVariableCompact
CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| gid | string | Globally unique identifier of the date field in the project template. A value of `1` refers to the project start date, while `2` refers to the project due date. |
| name | string | The name of the date variable. |
| description | string | The description of what the date variable is used for when instantiating a project. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DateVariableCompact",
"title": "DateVariableCompact",
"type": "object",
"properties": {
"gid": {
"description": "Globally unique identifier of the date field in the project template. A value of `1` refers to the project start date, while `2` refers to the project due date.",
"type": "string",
"readOnly": true,
"example": "1"
},
"name": {
"description": "The name of the date variable.",
"type": "string",
"readOnly": true,
"example": "Start Date"
},
"description": {
"description": "The description of what the date variable is used for when instantiating a project.",
"type": "string",
"readOnly": true,
"example": "Choose a start date for your project."
}
}
}