openapi: add roomName property to recording responses and schema
This commit is contained in:
parent
ec7f2a483f
commit
1adce0f424
@ -6,6 +6,7 @@ content:
|
|||||||
example:
|
example:
|
||||||
recordingId: 'room-123--EG_XYZ--XX445'
|
recordingId: 'room-123--EG_XYZ--XX445'
|
||||||
roomId: 'room-123'
|
roomId: 'room-123'
|
||||||
|
roomName: 'room'
|
||||||
status: 'ACTIVE'
|
status: 'ACTIVE'
|
||||||
filename: 'room-123--XX445.mp4'
|
filename: 'room-123--XX445.mp4'
|
||||||
startDate: 1600000000000
|
startDate: 1600000000000
|
||||||
|
|||||||
@ -12,8 +12,8 @@ content:
|
|||||||
example:
|
example:
|
||||||
recordingId: 'room-123--EG_XYZ--XX445'
|
recordingId: 'room-123--EG_XYZ--XX445'
|
||||||
roomId: 'room-123'
|
roomId: 'room-123'
|
||||||
|
roomName: 'room'
|
||||||
status: 'ENDING'
|
status: 'ENDING'
|
||||||
filename: 'room-123--XX445.mp4'
|
filename: 'room-123--XX445.mp4'
|
||||||
startDate: 1600000000000
|
startDate: 1600000000000
|
||||||
duration: 3.6
|
|
||||||
details: 'End reason: StopEgress API'
|
details: 'End reason: StopEgress API'
|
||||||
|
|||||||
@ -9,6 +9,7 @@ content:
|
|||||||
value:
|
value:
|
||||||
recordingId: 'room-123--EG_XYZ--XX445'
|
recordingId: 'room-123--EG_XYZ--XX445'
|
||||||
roomId: 'room-123'
|
roomId: 'room-123'
|
||||||
|
roomName: 'room'
|
||||||
status: 'COMPLETE'
|
status: 'COMPLETE'
|
||||||
filename: 'room-123--XX445.mp4'
|
filename: 'room-123--XX445.mp4'
|
||||||
startDate: 1600000000000
|
startDate: 1600000000000
|
||||||
@ -22,6 +23,7 @@ content:
|
|||||||
value:
|
value:
|
||||||
recordingId: 'room-456--EG_ABC--QR789'
|
recordingId: 'room-456--EG_ABC--QR789'
|
||||||
roomId: 'room-456'
|
roomId: 'room-456'
|
||||||
|
roomName: 'room'
|
||||||
status: 'ACTIVE'
|
status: 'ACTIVE'
|
||||||
filename: 'room-456--QR789.mp4'
|
filename: 'room-456--QR789.mp4'
|
||||||
startDate: 1682500000000
|
startDate: 1682500000000
|
||||||
|
|||||||
@ -17,6 +17,7 @@ content:
|
|||||||
recordings:
|
recordings:
|
||||||
- recordingId: 'room-123--EG_XYZ--XX445'
|
- recordingId: 'room-123--EG_XYZ--XX445'
|
||||||
roomId: 'room-123'
|
roomId: 'room-123'
|
||||||
|
roomName: 'room'
|
||||||
status: 'ACTIVE'
|
status: 'ACTIVE'
|
||||||
filename: 'room-123--XX445.mp4'
|
filename: 'room-123--XX445.mp4'
|
||||||
startDate: 1620000000000
|
startDate: 1620000000000
|
||||||
@ -26,6 +27,7 @@ content:
|
|||||||
details: 'Stopped using API'
|
details: 'Stopped using API'
|
||||||
- recordingId: 'room-456--EG_ZYX--XX678'
|
- recordingId: 'room-456--EG_ZYX--XX678'
|
||||||
roomId: 'room-456'
|
roomId: 'room-456'
|
||||||
|
roomName: 'room'
|
||||||
status: 'COMPLETE'
|
status: 'COMPLETE'
|
||||||
filename: 'room-456--XX678.mp4'
|
filename: 'room-456--XX678.mp4'
|
||||||
startDate: 1625000000000
|
startDate: 1625000000000
|
||||||
|
|||||||
@ -8,6 +8,10 @@ properties:
|
|||||||
type: string
|
type: string
|
||||||
example: 'room-123'
|
example: 'room-123'
|
||||||
description: The unique identifier of the room where the recording was made.
|
description: The unique identifier of the room where the recording was made.
|
||||||
|
roomName:
|
||||||
|
type: string
|
||||||
|
example: 'room'
|
||||||
|
description: The name of the room where the recording was made.
|
||||||
# outputMode:
|
# outputMode:
|
||||||
# type: string
|
# type: string
|
||||||
# example: 'COMPOSED'
|
# example: 'COMPOSED'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user