21 lines
452 B
JSON
21 lines
452 B
JSON
{
|
|
"name": "ticktick_delete_task",
|
|
"description": "Delete a TickTick task. This is irreversible.",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"task_id": {
|
|
"type": "string",
|
|
"description": "The task ID to delete"
|
|
},
|
|
"project_id": {
|
|
"type": "string",
|
|
"description": "The project ID the task belongs to"
|
|
}
|
|
},
|
|
"required": [
|
|
"task_id",
|
|
"project_id"
|
|
]
|
|
}
|
|
} |