Skip to content

Commit

Permalink
Enhancement: Update schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ergebnis-bot committed Sep 1, 2023
1 parent f6a3974 commit c99522f
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions resource/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -399,12 +399,26 @@
"type": "object",
"description": "Security audit configuration options",
"properties": {
"ignored": {
"type": "array",
"description": "A set of advisory ids, remote ids or CVE ids that should be ignored and not reported as part of an audit.",
"items": {
"type": "string"
}
"ignore": {
"anyOf": [
{
"type": "object",
"description": "A list of advisory ids, remote ids or CVE ids (keys) and the explanations (values) for why they're being ignored. The listed items are reported but let the audit command pass.",
"additionalProperties": {
"type": [
"string",
"string"
]
}
},
{
"type": "array",
"description": "A set of advisory ids, remote ids or CVE ids that are reported but let the audit command pass.",
"items": {
"type": "string"
}
}
]
}
}
},
Expand Down

0 comments on commit c99522f

Please sign in to comment.