There was an error while loading. Please reload this page.
1 parent 5c7a5d2 commit 23bcde2Copy full SHA for 23bcde2
1 file changed
cli/cage/audit/aggregator.go
@@ -50,13 +50,13 @@ func (a *aggregater) Add(r *ScanResult) {
50
}
51
52
type AggregateResult struct {
53
- CriticalCount int
54
- HighCount int
55
- MediumCount int
56
- LowCount int
57
- InfoCount int
58
- TotalCount int
59
- HighestSeverity ecrtypes.FindingSeverity
+ CriticalCount int `json:"critical_count"`
+ HighCount int `json:"high_count"`
+ MediumCount int `json:"medium_count"`
+ LowCount int `json:"low_count"`
+ InfoCount int `json:"info_count"`
+ TotalCount int `json:"total_count"`
+ HighestSeverity ecrtypes.FindingSeverity `json:"highest_severity"`
60
61
62
func (a *aggregater) SummarizeTotal() *AggregateResult {
0 commit comments