production_upsertAssemblyInstructionStepRequirement
WRITEUpsert assembly instruction step requirement.
Parameters
stepIdstringrequiredtypestringrequiredidstringoptionalitemIdstringnulloptionalnamestringnulloptionaltextstringnulloptionalseveritystringnulloptionalfilePathstringnulloptionalquantitynumberoptionalsortOrdernumberoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "production_upsertAssemblyInstructionStepRequirement",
"arguments": {
"stepId": "string",
"type": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"stepId": {
"type": "string"
},
"type": {
"type": "string"
},
"itemId": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"text": {
"type": [
"string",
"null"
]
},
"severity": {
"type": [
"string",
"null"
]
},
"filePath": {
"type": [
"string",
"null"
]
},
"quantity": {
"type": "number"
},
"sortOrder": {
"type": "number"
}
},
"required": [
"stepId",
"type"
]
}