production_upsertAssemblyComponentMapping
WRITEUpsert assembly component mapping.
Parameters
modelUploadIdstringrequiredgeometryHashstringrequireditemIdstringrequiredconfidenceenumoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_upsertAssemblyComponentMapping",
"arguments": {
"modelUploadId": "string",
"geometryHash": "string",
"itemId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"modelUploadId": {
"type": "string"
},
"geometryHash": {
"type": "string"
},
"itemId": {
"type": "string"
},
"confidence": {
"type": "string",
"enum": [
"high",
"low"
]
}
},
"required": [
"modelUploadId",
"geometryHash",
"itemId"
]
}