production_reassignAssemblyStepComponents

WRITE

Reassign assembly step components.

Parameters

assemblyInstructionIdstringrequired
componentNodeIdsstring[]required
modeenumrequired
targetStepIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "production_reassignAssemblyStepComponents",
  "arguments": {
    "assemblyInstructionId": "string",
    "componentNodeIds": [],
    "mode": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "assemblyInstructionId": {
      "type": "string"
    },
    "targetStepId": {
      "type": "string"
    },
    "componentNodeIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "mode": {
      "type": "string",
      "enum": [
        "move",
        "duplicate",
        "remove"
      ]
    }
  },
  "required": [
    "assemblyInstructionId",
    "componentNodeIds",
    "mode"
  ]
}