production_upsertMaintenanceSchedule

WRITE

Upsert maintenance schedule.

Parameters

namestringrequired
workCenterIdstringrequired
frequencystringrequired
prioritystringrequired
activestringrequired
idstringoptional
descriptionstringoptional
estimatedDurationnumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertMaintenanceSchedule",
  "arguments": {
    "name": "string",
    "workCenterId": "string",
    "frequency": "string",
    "priority": "string",
    "active": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "workCenterId": {
      "type": "string"
    },
    "frequency": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "estimatedDuration": {
      "type": "number"
    },
    "active": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "workCenterId",
    "frequency",
    "priority",
    "active"
  ]
}