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

Audit fix #2731

Merged
merged 3 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions data-serving/data-service/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ paths:
$ref: '#/components/responses/400'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'422':
$ref: '#/components/responses/422'
'500':
Expand Down Expand Up @@ -257,6 +259,10 @@ paths:
responses:
'200':
$ref: '#/components/responses/200CasesDownload'
'400':
$ref: '#/components/responses/400'
'422':
$ref: '#/components/responses/422'
'500':
$ref: '#/components/responses/500'
/cases/batchUpsert:
Expand Down Expand Up @@ -1039,6 +1045,8 @@ components:
$ref: '#/components/schemas/Date'
sideEffects:
$ref: '#/components/schemas/SymptomArray'
AnyValue:
description: Used for errors and exceptional cases that need human inspection and intervention
responses:
'200Case':
description: OK
Expand Down Expand Up @@ -1122,12 +1130,24 @@ components:
description: No content
'400':
description: Malformed request
content:
application/json:
schema:
$ref: '#/components/schemas/AnyValue'
'403':
description: Forbidden
'404':
description: Not found
content:
application/json:
schema:
$ref: '#/components/schemas/AnyValue'
'422':
description: Unprocessable entity
content:
application/json:
schema:
$ref: '#/components/schemas/AnyValue'
'500':
description: Internal server error
servers:
Expand Down
Loading