make streaming playlists pivotable objects in openapi spec
This commit is contained in:
parent
c540d8654f
commit
4ca669e361
|
@ -4208,6 +4208,8 @@ components:
|
||||||
type: string
|
type: string
|
||||||
format: url
|
format: url
|
||||||
VideoStreamingPlaylists:
|
VideoStreamingPlaylists:
|
||||||
|
allOf:
|
||||||
|
- type: object
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -4215,7 +4217,12 @@ components:
|
||||||
type: integer
|
type: integer
|
||||||
enum:
|
enum:
|
||||||
- 1
|
- 1
|
||||||
description: 'Playlist type (HLS = `1`)'
|
description: |
|
||||||
|
Playlist type:
|
||||||
|
- `1`: HLS
|
||||||
|
- $ref: '#/components/schemas/VideoStreamingPlaylists-HLS'
|
||||||
|
VideoStreamingPlaylists-HLS:
|
||||||
|
properties:
|
||||||
playlistUrl:
|
playlistUrl:
|
||||||
type: string
|
type: string
|
||||||
format: url
|
format: url
|
||||||
|
|
Loading…
Reference in New Issue