add_finding_note
Add a detailed note to a specific finding in DefectDojo to enhance vulnerability management and tracking. Supports collaboration and context for resolving issues.
Instructions
Add a note to a finding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
finding_id | Yes | ||
note | Yes |
Input Schema (JSON Schema)
{
"properties": {
"finding_id": {
"title": "Finding Id",
"type": "integer"
},
"note": {
"title": "Note",
"type": "string"
}
},
"required": [
"finding_id",
"note"
],
"title": "add_finding_noteArguments",
"type": "object"
}