ticktick_set_task_estimate
Assign time estimates to tasks in TickTick by specifying task ID and duration in minutes, hours, or pomodoros. Streamline task planning and prioritization.
Instructions
Set estimated time for a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
estimate_type | No | Type of estimate: pomodoros, minutes, hours | minutes |
estimated_minutes | Yes | Estimated time in minutes | |
task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"estimate_type": {
"default": "minutes",
"description": "Type of estimate: pomodoros, minutes, hours",
"type": "string"
},
"estimated_minutes": {
"description": "Estimated time in minutes",
"type": "number"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"estimated_minutes"
],
"type": "object"
}