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

switches export status to enum #6

Merged
merged 1 commit into from
Mar 19, 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
8 changes: 7 additions & 1 deletion openapi/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,13 @@ components:
description: The URL of the resulting (exported) file
status:
type: string
description: 'The current status of the export, can be one of `initialising`, `uploading`, `successful` or `failed`'
description: The current status of the export
enum:
- initialising
- uploading
- successful
- failed
example: successful
failure:
$ref: '#/components/schemas/Failure'
example:
Expand Down