quality_insertIssue

WRITE

Insert issue.

Parameters

namestringrequired
priorityenumrequired
sourceenumrequired
locationIdstringrequired
nonConformanceTypeIdstringrequired
openDatestringrequired
nonConformanceIdstringoptional
descriptionstringoptional
nonConformanceWorkflowIdstringoptional
dueDatestringoptional
closeDatestringoptional
quantitynumberoptional
requiredActionIdsstring[]optional
approvalRequirementsstring[]optional
itemsstring[]optional
jobOperationIdstringoptional
customerIdstringoptional
salesOrderLineIdstringoptional
operationSupplierProcessIdstringoptional
customFieldsanyoptional

Call it

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

call_tool
call_tool({
  "name": "quality_insertIssue",
  "arguments": {
    "name": "string",
    "priority": "string",
    "source": "string",
    "locationId": "string",
    "nonConformanceTypeId": "string",
    "openDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "nonConformanceId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Low",
        "Medium",
        "High",
        "Critical"
      ]
    },
    "source": {
      "type": "string",
      "enum": [
        "Internal",
        "External"
      ]
    },
    "locationId": {
      "type": "string"
    },
    "nonConformanceTypeId": {
      "type": "string"
    },
    "openDate": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "nonConformanceWorkflowId": {
      "type": "string"
    },
    "dueDate": {
      "type": "string"
    },
    "closeDate": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "requiredActionIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "approvalRequirements": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "items": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "jobOperationId": {
      "type": "string"
    },
    "customerId": {
      "type": "string"
    },
    "salesOrderLineId": {
      "type": "string"
    },
    "operationSupplierProcessId": {
      "type": "string"
    },
    "customFields": {}
  },
  "required": [
    "name",
    "priority",
    "source",
    "locationId",
    "nonConformanceTypeId",
    "openDate"
  ]
}