quality_updateGauge

WRITE

Update gauge.

Parameters

idstringrequired
gaugeIdstringoptional
gaugeTypeIdstringoptional
gaugeRolestringoptional
gaugeCalibrationStatusstringoptional
supplierIdstringnulloptional
modelNumberstringnulloptional
serialNumberstringnulloptional
descriptionstringnulloptional
dateAcquiredstringnulloptional
lastCalibrationDatestringnulloptional
nextCalibrationDatestringnulloptional
locationIdstringnulloptional
storageUnitIdstringnulloptional
calibrationIntervalInMonthsnumberoptional
customFieldsanyoptional

Call it

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

call_tool
call_tool({
  "name": "quality_updateGauge",
  "arguments": {
    "id": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

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