| gid | str | Asana task GID |
| name | str | Task name |
| created_at | Optional[datetime] | Created at |
| modified_at | Optional[datetime] | Last modified at |
| project_gid | str | Globally unique identifier of the project this task belongs to |
| section_gid | Optional[str] | Globally unique identifier of the section this task belongs to |
| actual_time_minutes | Optional[int] | The actual time spent on this task in minutes |
| approval_status | Optional[str] | The status of the task’s approval, if applicable |
| assignee | Optional[Dict] | User to which this task is assigned |
| assignee_status | Optional[str] | The scheduling status of this task for the user it’s assigned to |
| completed | bool | Whether the task is marked complete |
| completed_at | Optional[datetime] | The time at which this task was completed |
| completed_by | Optional[Dict] | The user who completed this task |
| dependencies | List[Dict] | Array of tasks that this task depends on |
| dependents | List[Dict] | Array of tasks that depend on this task |
| due_at | Optional[datetime] | The time at which this task is due with a time component |
| due_on | Optional[str] | The date on which this task is due (YYYY-MM-DD format) |
| external | Optional[Dict] | Information about the external application syncing with this task |
| html_notes | Optional[str] | HTML formatted note content of the task |
| notes | Optional[str] | Free-form textual information associated with the task |
| is_rendered_as_separator | bool | Whether the task is rendered as a separator in list view |
| liked | bool | Whether the task is liked by the authorized user |
| memberships | List[Dict] | Array of projects and sections this task is in |
| num_likes | int | The number of users who have liked this task |
| num_subtasks | int | The number of subtasks on this task |
| parent | Optional[Dict] | The parent of this task, if applicable |
| permalink_url | Optional[str] | URL to access the task in the Asana application |
| resource_subtype | str | The subtype of the task (default_task, milestone, approval) |
| start_at | Optional[datetime] | The time at which this task starts with a time component |
| start_on | Optional[str] | The date on which this task starts (YYYY-MM-DD format) |
| tags | List[Dict] | Array of tags associated with this task |
| custom_fields | List[Dict] | Array of custom field values applied to the task |
| followers | List[Dict] | Array of users following this task |
| workspace | Optional[Dict] | The workspace this task is associated with |