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
34 changes: 34 additions & 0 deletions client/openapi/trustd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2668,6 +2668,12 @@ paths:
type: array
items:
type: string
- name: advisories
in: query
description: Include advisory severity summary per SBOM
required: false
schema:
type: boolean
responses:
'200':
description: Matching SBOMs
Expand Down Expand Up @@ -5550,6 +5556,8 @@ components:
required:
- described_by
properties:
advisories:
$ref: '#/components/schemas/RequestedField_HashMap_HashMap'
described_by:
type: array
items:
Expand All @@ -5575,6 +5583,8 @@ components:
required:
- described_by
properties:
advisories:
$ref: '#/components/schemas/RequestedField_HashMap_HashMap'
described_by:
type: array
items:
Expand Down Expand Up @@ -5650,6 +5660,8 @@ components:
required:
- described_by
properties:
advisories:
$ref: '#/components/schemas/RequestedField_HashMap_HashMap'
described_by:
type: array
items:
Expand Down Expand Up @@ -6095,6 +6107,26 @@ components:
type: string
format: date-time
description: Start of the import run
RequestedField_HashMap_HashMap:
oneOf:
- type: 'null'
- type: object
additionalProperties:
type: integer
format: int64
minimum: 0
propertyNames:
type: string
description: |-
Severity level for affected vulnerabilities, extending the shared `Severity`
enum with an `Unknown` variant for vulnerabilities that have no CVSS score.
enum:
- unknown
- none
- low
- medium
- high
- critical
RequestedField_Vec_Vec_ScoredVector:
oneOf:
- type: 'null'
Expand Down Expand Up @@ -6371,6 +6403,8 @@ components:
required:
- described_by
properties:
advisories:
$ref: '#/components/schemas/RequestedField_HashMap_HashMap'
described_by:
type: array
items:
Expand Down
Loading