mirror of
https://github.com/TeamPiped/OpenAPI.git
synced 2024-08-14 23:56:55 +00:00
fix: types enum
This commit is contained in:
parent
92d1a99f76
commit
9ccef76e89
1 changed files with 6 additions and 3 deletions
|
@ -685,7 +685,8 @@ components:
|
|||
type:
|
||||
type: string
|
||||
description: The type of the stream item. Always stream.
|
||||
const: stream
|
||||
enum:
|
||||
- stream
|
||||
duration:
|
||||
type: integer
|
||||
description: The duration of the video in seconds.
|
||||
|
@ -829,7 +830,8 @@ components:
|
|||
type:
|
||||
type: string
|
||||
description: The type of the channel item. Always channel.
|
||||
const: channel
|
||||
enum:
|
||||
- channel
|
||||
description:
|
||||
type: string
|
||||
description: The description of the channel.
|
||||
|
@ -857,7 +859,8 @@ components:
|
|||
type:
|
||||
type: string
|
||||
description: The type of the playlist item. Always playlist.
|
||||
const: playlist
|
||||
enum:
|
||||
- playlist
|
||||
name:
|
||||
type: string
|
||||
description: The name of the playlist.
|
||||
|
|
Loading…
Reference in a new issue