items_insertChangeNotice

WRITE

Insert change notice.

Parameters

namestringrequired
openDatestringrequired
changeNoticeIdstringoptional
typestringoptional
prioritystringoptional
changeNoticeTypeIdstringoptional
nonConformanceIdstringoptional
reasonForChangeanyoptional
descriptionanyoptional
dueDatestringoptional
assigneestringoptional
customFieldsanyoptional

Call it

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

call_tool
call_tool({
  "name": "items_insertChangeNotice",
  "arguments": {
    "name": "string",
    "openDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "changeNoticeId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "changeNoticeTypeId": {
      "type": "string"
    },
    "nonConformanceId": {
      "type": "string"
    },
    "openDate": {
      "type": "string"
    },
    "reasonForChange": {},
    "description": {},
    "dueDate": {
      "type": "string"
    },
    "assignee": {
      "type": "string"
    },
    "customFields": {}
  },
  "required": [
    "name",
    "openDate"
  ]
}