production_getJobMaterialShortfallByItem
READGet job material shortfall by item.
Parameters
jobIdstringrequiredlocationIdstringrequiredmaterialsany[]requiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_getJobMaterialShortfallByItem",
"arguments": {
"jobId": "string",
"locationId": "string",
"materials": []
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"jobId": {
"type": "string"
},
"locationId": {
"type": "string"
},
"materials": {
"type": "array",
"items": {}
}
},
"required": [
"jobId",
"locationId",
"materials"
]
}