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
48 changes: 47 additions & 1 deletion client/openapi/trustd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,24 @@ paths:
required: true
schema:
$ref: '#/components/schemas/Labels'
- name: format
in: query
description: The format of the uploaded document.
required: false
schema:
type: string
enum:
- oSV
- cSAF
- cVE
- sPDX
- cycloneDX
- clearlyDefinedCuration
- clearlyDefined
- cweCatalog
- advisory
- sBOM
- unknown
requestBody:
content:
application/json:
Expand Down Expand Up @@ -1250,7 +1268,7 @@ paths:
get:
tags:
- sbom
summary: Search for SBOMs
summary: List SBOMs
operationId: listSboms
parameters:
- name: q
Expand Down Expand Up @@ -1307,6 +1325,34 @@ paths:
required: true
schema:
$ref: '#/components/schemas/Labels'
- name: format
in: query
description: The format of the uploaded document.
required: false
schema:
type: string
enum:
- oSV
- cSAF
- cVE
- sPDX
- cycloneDX
- clearlyDefinedCuration
- clearlyDefined
- cweCatalog
- advisory
- sBOM
- unknown
- name: cache
in: query
description: Await loading the document into the analysis graph cache
required: false
schema:
type: string
enum:
- skip
- queue
- wait
requestBody:
content:
application/octet-stream:
Expand Down
Loading