File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -188,8 +188,10 @@ type Run struct {
188
188
}
189
189
190
190
type Suppression struct {
191
+ Guid string `json:"guid"`
191
192
Justification string `json:"justification"`
192
193
Properties SuppressionProperties `json:"properties"`
194
+ Status SuppresionStatus `json:"status"`
193
195
}
194
196
195
197
type SuppressionProperties struct {
@@ -200,11 +202,15 @@ type SuppressionProperties struct {
200
202
}
201
203
202
204
type Category string
205
+ type SuppresionStatus string
203
206
204
207
const (
205
- WontFix Category = "wont-fix"
206
- NotVulnerable Category = "not-vulnerable"
207
- TemporaryIgnore Category = "temporary-ignore"
208
+ WontFix Category = "wont-fix"
209
+ NotVulnerable Category = "not-vulnerable"
210
+ TemporaryIgnore Category = "temporary-ignore"
211
+ UnderReview SuppresionStatus = "underReview"
212
+ Accepted SuppresionStatus = "accepted"
213
+ Rejected SuppresionStatus = "rejected"
208
214
)
209
215
210
216
type IgnoredBy struct {
You can’t perform that action at this time.
0 commit comments