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
29 changes: 15 additions & 14 deletions client/openapi/trustd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2150,28 +2150,29 @@ components:
allOf:
- $ref: '#/components/schemas/VulnerabilityHead'
- type: object
required:
- severity
- score
properties:
score:
type: number
type:
- number
- 'null'
format: double
description: |-
The average (arithmetic mean) score this advisory assigns to
the particular vulnerability.
severity:
$ref: '#/components/schemas/Severity'
description: |-
The English-language word description of the severity of the given
vulnerability, as asserted by the advisory, using the CVSS bucketing
ranges.
oneOf:
- type: 'null'
- $ref: '#/components/schemas/Severity'
description: |-
The English-language word description of the severity of the given
vulnerability, as asserted by the advisory, using the CVSS bucketing
ranges.

Critical: 9.0–10.0
High: 7.0–8.9
Medium: 4.0–6.9
Low: 0.1–3.9
None: 0
Critical: 9.0–10.0
High: 7.0–8.9
Medium: 4.0–6.9
Low: 0.1–3.9
None: 0
AdvisoryVulnerabilitySummary:
allOf:
- $ref: '#/components/schemas/AdvisoryVulnerabilityHead'
Expand Down
Loading