production_upsertMakeMethodFromJob
WRITEUpsert make method from job.
Parameters
sourceIdstringrequiredtargetIdstringrequiredpartsobjectoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_upsertMakeMethodFromJob",
"arguments": {
"sourceId": "string",
"targetId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"sourceId": {
"type": "string"
},
"targetId": {
"type": "string"
},
"parts": {
"type": "object",
"properties": {
"billOfMaterial": {
"type": "boolean"
},
"billOfProcess": {
"type": "boolean"
},
"parameters": {
"type": "boolean"
},
"tools": {
"type": "boolean"
},
"steps": {
"type": "boolean"
},
"workInstructions": {
"type": "boolean"
}
},
"required": [
"billOfMaterial",
"billOfProcess",
"parameters",
"tools",
"steps",
"workInstructions"
]
}
},
"required": [
"sourceId",
"targetId"
]
}