Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct the description of the batch-analysis api #16

Merged
merged 1 commit into from
Apr 9, 2024
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
6 changes: 3 additions & 3 deletions api/v4/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ paths:
/batch-analysis:
post:
operationId: batchAnalysis
summary: Takes an array of client-resolved dependency graphs to perform a full stack analysis from all the available Vulnerability sources
summary: Takes a dictionary of client-resolved dependency graphs to perform a full stack analysis from all the available Vulnerability sources
security:
- RhdaTokenAuth: [ ]
- SnykTokenAuth: [ ]
Expand All @@ -91,7 +91,7 @@ paths:
example: snyk
requestBody:
required: true
description: An array of dependency graphs in SBOM format
description: A dictionary of package URLs to dependency graphs in SBOM format
content:
application/vnd.cyclonedx+json:
schema:
Expand All @@ -105,7 +105,7 @@ paths:
type: object
responses:
'200':
description: Full dependency analysis from all the available providers
description: A dictionary of package URLs to full dependency analysis reports from all the available providers
content:
application/json:
schema:
Expand Down
Loading