update_countermeasure
Modify the status or details of a countermeasure in the SD Elements MCP Server by specifying its ID, ensuring accurate tracking and management of security measures.
Instructions
Update a countermeasure status or details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countermeasure_id | Yes | The ID of the countermeasure to update | |
notes | No | Notes about the countermeasure | |
status | No | New status for the countermeasure |
Input Schema (JSON Schema)
{
"properties": {
"countermeasure_id": {
"description": "The ID of the countermeasure to update",
"minimum": 1,
"type": "integer"
},
"notes": {
"description": "Notes about the countermeasure",
"type": "string"
},
"status": {
"description": "New status for the countermeasure",
"type": "string"
}
},
"required": [
"countermeasure_id"
],
"type": "object"
}