items_updateChangeOrderAffectedItemCutover

WRITE

Update change order affected item cutover.

Parameters

idstringrequired
supersessionModeanyrequired
discontinuationDatestringoptional
successorEffectivityDatestringoptional

Call it

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

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

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "supersessionMode": {},
    "discontinuationDate": {
      "type": "string"
    },
    "successorEffectivityDate": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "supersessionMode"
  ]
}