production_getJobOrderStatusMap

READ

Get job order status map.

Parameters

jobIdstringrequired
locationIdstringrequired
jobStatusanyrequired
materialsanyrequired

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "production_getJobOrderStatusMap",
  "arguments": {
    "jobId": "string",
    "locationId": "string",
    "jobStatus": "string",
    "materials": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "jobStatus": {},
    "materials": {}
  },
  "required": [
    "jobId",
    "locationId",
    "jobStatus",
    "materials"
  ]
}