production_upsertAssemblyComponentMapping

WRITE

Upsert assembly component mapping.

Parameters

modelUploadIdstringrequired
geometryHashstringrequired
itemIdstringrequired
confidenceenumoptional

Call 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"
  ]
}