production_calculateJobPriority
WRITECalculate job priority.
Parameters
// Optional - if updating an existing job
dueDatestringnullrequireddeadlineTypestringrequiredlocationIdstringrequiredjobIdstringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_calculateJobPriority",
"arguments": {
"// Optional - if updating an existing job\n dueDate": "string",
"deadlineType": "string",
"locationId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"jobId": {
"type": "string"
},
"// Optional - if updating an existing job\n dueDate": {
"type": [
"string",
"null"
]
},
"deadlineType": {
"type": "string"
},
"locationId": {
"type": "string"
}
},
"required": [
"// Optional - if updating an existing job\n dueDate",
"deadlineType",
"locationId"
]
}