quality_upsertGauge

WRITE

Upsert gauge.

Parameters

gaugeTypeIdstringrequired
gaugeRolestringrequired
idstringoptional
gaugeIdstringoptional
supplierIdstringoptional
modelNumberstringoptional
serialNumberstringoptional
descriptionstringoptional
dateAcquiredstringoptional
lastCalibrationDatestringoptional
nextCalibrationDatestringoptional
locationIdstringoptional
storageUnitIdstringoptional
calibrationIntervalInMonthsnumberoptional

Call it

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

call_tool
call_tool({
  "name": "quality_upsertGauge",
  "arguments": {
    "gaugeTypeId": "string",
    "gaugeRole": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "gaugeId": {
      "type": "string"
    },
    "supplierId": {
      "type": "string"
    },
    "modelNumber": {
      "type": "string"
    },
    "serialNumber": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "dateAcquired": {
      "type": "string"
    },
    "gaugeTypeId": {
      "type": "string"
    },
    "gaugeRole": {
      "type": "string"
    },
    "lastCalibrationDate": {
      "type": "string"
    },
    "nextCalibrationDate": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "storageUnitId": {
      "type": "string"
    },
    "calibrationIntervalInMonths": {
      "type": "number"
    }
  },
  "required": [
    "gaugeTypeId",
    "gaugeRole"
  ]
}