decide_set_project_interval
Define project timelines by setting start and end dates in the Decide realm using the ADD framework. Requires project record name and ISO-formatted dates for accuracy.
Instructions
Set project interval (start date and end date) in Decide realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in ISO format | |
projectRecordName | Yes | Record name of the project | |
startDate | Yes | Start date in ISO format |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in ISO format",
"format": "date-time",
"type": "string"
},
"projectRecordName": {
"description": "Record name of the project",
"type": "string"
},
"startDate": {
"description": "Start date in ISO format",
"format": "date-time",
"type": "string"
}
},
"required": [
"projectRecordName",
"startDate",
"endDate"
],
"type": "object"
}