manage_false_positives
Suppress, remove, or list false positive security findings to improve audit accuracy and reduce noise in compliance validation.
Instructions
Manage false positive suppressions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform | |
findingId | No | Finding ID to suppress | |
reason | No | Reason for suppression |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform",
"enum": [
"add",
"remove",
"list",
"filter"
],
"type": "string"
},
"findingId": {
"description": "Finding ID to suppress",
"type": "string"
},
"reason": {
"description": "Reason for suppression",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}