resources_insertMaintenanceDispatch
WRITEInsert maintenance dispatch.
Parameters
locationIdstringrequiredmaintenanceDispatchIdstringoptionalstatusstringoptionalprioritystringoptionalseverityanyoptionalsourceenumoptionaloeeImpactenumoptionalworkCenterIdstringoptionalassigneestringoptionalsuspectedFailureModeIdstringoptionalplannedStartTimestringoptionalplannedEndTimestringoptionalcontentanyoptionalCall 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"
]
}