production_planAssemblyStepMarkerSync

WRITE

Plan assembly step marker sync.

Parameters

sourceStepIdsstring[]required
existingSyncedobjectrequired

Call it

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

call_tool
call_tool({
  "name": "production_planAssemblyStepMarkerSync",
  "arguments": {
    "sourceStepIds": [],
    "existingSynced": {}
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "sourceStepIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "existingSynced": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "assemblyInstructionStepId": {
          "type": "array",
          "items": {}
        }
      },
      "required": [
        "id",
        "assemblyInstructionStepId"
      ]
    }
  },
  "required": [
    "sourceStepIds",
    "existingSynced"
  ]
}