8000 fix(api): enum schema description by jooola · Pull Request #2803 · libretime/libretime · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(api): enum schema description #2803

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

Merged
merged 1 commit into from
Dec 18, 2023
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
20 changes: 15 additions & 5 deletions api/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5312,7 +5312,7 @@ components:
readOnly: true
import_status:
allOf:
- $ref: "#/components/schemas/PlaylistContentKindEnum"
- $ref: "#/components/schemas/FileImportStatusEnum"
minimum: -2147483648
maximum: 2147483647
filepath:
Expand Down Expand Up @@ -5564,6 +5564,16 @@ components:
- mime
- name
- size
FileImportStatusEnum:
enum:
- 0
- 1
- 2
type: integer
description: |-
* `0` - Success
* `1` - Pending
* `2` - Failed
ImportedPodcast:
type: object
properties:
Expand Down Expand Up @@ -5714,7 +5724,7 @@ components:
readOnly: true
import_status:
allOf:
- $ref: "#/components/schemas/PlaylistContentKindEnum"
- $ref: "#/components/schemas/FileImportStatusEnum"
minimum: -2147483648
maximum: 2147483647
filepath:
Expand Down Expand Up @@ -6857,9 +6867,9 @@ components:
- 2
type: integer
description: |-
* `0` - Success
* `1` - Pending
* `2` - Failed
* `0` - File
* `1` - Stream
* `2` - Block
PlayoutHistory:
type: object
properties:
Expand Down
0