production_upsertMaintenanceScheduleItem

WRITE

Upsert maintenance schedule item.

Parameters

maintenanceScheduleIdstringrequired
itemIdstringrequired
unitOfMeasureCodestringrequired
idstringoptional
quantitynumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertMaintenanceScheduleItem",
  "arguments": {
    "maintenanceScheduleId": "string",
    "itemId": "string",
    "unitOfMeasureCode": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "maintenanceScheduleId": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "unitOfMeasureCode": {
      "type": "string"
    }
  },
  "required": [
    "maintenanceScheduleId",
    "itemId",
    "unitOfMeasureCode"
  ]
}