production_recalculateJobRequirements
WRITERecalculate job requirements.
Parameters
idstringrequired// job id
companyIdstringrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_recalculateJobRequirements",
"arguments": {
"id": "string",
"// job id\n companyId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"// job id\n companyId": {
"type": "string"
}
},
"required": [
"id",
"// job id\n companyId"
]
}