resources_insertMaintenanceDispatch

WRITE

Insert maintenance dispatch.

Parameters

locationIdstringrequired
maintenanceDispatchIdstringoptional
statusstringoptional
prioritystringoptional
severityanyoptional
sourceenumoptional
oeeImpactenumoptional
workCenterIdstringoptional
assigneestringoptional
suspectedFailureModeIdstringoptional
plannedStartTimestringoptional
plannedEndTimestringoptional
contentanyoptional

Call it

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

call_tool
call_tool({
  "name": "resources_insertMaintenanceDispatch",
  "arguments": {
    "locationId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "maintenanceDispatchId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "severity": {},
    "source": {
      "type": "string",
      "enum": [
        "Scheduled",
        "Reactive",
        "Non-Conformance"
      ]
    },
    "oeeImpact": {
      "type": "string",
      "enum": [
        "Down",
        "Planned",
        "Impact",
        "No Impact"
      ]
    },
    "workCenterId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "assignee": {
      "type": "string"
    },
    "suspectedFailureModeId": {
      "type": "string"
    },
    "plannedStartTime": {
      "type": "string"
    },
    "plannedEndTime": {
      "type": "string"
    },
    "content": {}
  },
  "required": [
    "locationId"
  ]
}