production_upsertAssemblyInstructionStep

WRITE

Upsert assembly instruction step.

Parameters

assemblyInstructionIdstringrequired
idstringoptional
titlestringnulloptional
typeanyoptional
descriptionanyoptional
requiredbooleanoptional
unitOfMeasureCodestringnulloptional
minValuenumbernulloptional
maxValuenumbernulloptional
listValuesarraynulloptional
componentNodeIdsstring[]optional
motionanyoptional
cameraanyoptional
fasteneranyoptional
durationSecondsnumbernulloptional
sortOrdernumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertAssemblyInstructionStep",
  "arguments": {
    "assemblyInstructionId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "assemblyInstructionId": {
      "type": "string"
    },
    "title": {
      "type": [
        "string",
        "null"
      ]
    },
    "type": {},
    "description": {},
    "required": {
      "type": "boolean"
    },
    "unitOfMeasureCode": {
      "type": [
        "string",
        "null"
      ]
    },
    "minValue": {
      "type": [
        "number",
        "null"
      ]
    },
    "maxValue": {
      "type": [
        "number",
        "null"
      ]
    },
    "listValues": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      }
    },
    "componentNodeIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "motion": {},
    "camera": {},
    "fastener": {},
    "durationSeconds": {
      "type": [
        "number",
        "null"
      ]
    },
    "sortOrder": {
      "type": "number"
    }
  },
  "required": [
    "assemblyInstructionId"
  ]
}