production_upsertAssemblyUnit
WRITEUpsert assembly unit.
Parameters
modelUploadIdstringrequirednamestringrequiredcomponentNodeIdsstring[]requiredidstringoptionalitemIdstringnulloptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_upsertAssemblyUnit",
"arguments": {
"modelUploadId": "string",
"name": "string",
"componentNodeIds": []
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"modelUploadId": {
"type": "string"
},
"name": {
"type": "string"
},
"componentNodeIds": {
"type": "array",
"items": {
"type": "string"
}
},
"itemId": {
"type": [
"string",
"null"
]
}
},
"required": [
"modelUploadId",
"name",
"componentNodeIds"
]
}