production_upsertMaintenanceDispatch

WRITE

Upsert maintenance dispatch.

Parameters

statusstringrequired
prioritystringrequired
idstringoptional
severitystringoptional
sourcestringoptional
oeeImpactstringoptional
workCenterIdstringoptional
suspectedFailureModeIdstringoptional
plannedStartTimestringoptional
plannedEndTimestringoptional
assigneestringoptional
contentstringoptional

Call it

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

call_tool
call_tool({
  "name": "production_upsertMaintenanceDispatch",
  "arguments": {
    "status": "string",
    "priority": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "severity": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "oeeImpact": {
      "type": "string"
    },
    "workCenterId": {
      "type": "string"
    },
    "suspectedFailureModeId": {
      "type": "string"
    },
    "plannedStartTime": {
      "type": "string"
    },
    "plannedEndTime": {
      "type": "string"
    },
    "assignee": {
      "type": "string"
    },
    "content": {
      "type": "string"
    }
  },
  "required": [
    "status",
    "priority"
  ]
}