accounting_addCloseTask
WRITEAdd close task.
Parameters
periodIdstringrequirednamestringrequiredtaskTypestringrequiredrequiredbooleanrequiredassigneeIdstringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_addCloseTask",
"arguments": {
"periodId": "string",
"name": "string",
"taskType": "string",
"required": true
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"periodId": {
"type": "string"
},
"name": {
"type": "string"
},
"taskType": {
"type": "string"
},
"required": {
"type": "boolean"
},
"assigneeId": {
"type": "string"
}
},
"required": [
"periodId",
"name",
"taskType",
"required"
]
}