decide_set_task_due_date
Assign due dates to tasks in the Decide realm using task record names and ISO-formatted end dates, enabling structured task management within the ADD framework.
Instructions
Set due date for a task in Decide realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | Due date in ISO format | |
taskRecordName | Yes | Record name of the task |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "Due date in ISO format",
"format": "date-time",
"type": "string"
},
"taskRecordName": {
"description": "Record name of the task",
"type": "string"
}
},
"required": [
"taskRecordName",
"endDate"
],
"type": "object"
}