production_completeJob

WRITE

Complete job.

Parameters

jobIdstringrequired
quantitynumberrequired
storageUnitIdstringoptional
locationIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "production_completeJob",
  "arguments": {
    "jobId": "string",
    "quantity": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "storageUnitId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    }
  },
  "required": [
    "jobId",
    "quantity"
  ]
}