Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ An `issue` represents a single instance of a real or potential code problem, det
"location": Location,
"other_locations": [Location],
"remediation_points": 500,
"severity": Severity
"severity": Severity,
"fingerprint": "abcd1234"
}
```

Expand All @@ -80,6 +81,7 @@ An `issue` represents a single instance of a real or potential code problem, det
* `trace` -- **Optional.** A `Trace` object representing other interesting source code locations related to this issue.
* `remediation_points` -- **Optional**. An integer indicating a rough estimate of how long it would take to resolve the reported issue.
* `severity` -- **Optional**. A `Severity` string (`info`, `normal`, or `critical`) describing the potential impact of the issue found.
* `fingerprint` -- **Optional**. A unique, deterministic identifier for the specific issue being reported to allow a user to exclude it from future analyses.

#### Descriptions

Expand Down