26 lines
999 B
YAML
26 lines
999 B
YAML
type: object
|
|
required:
|
|
- expirationDate
|
|
properties:
|
|
expirationDate:
|
|
type: number
|
|
example: 1620000000000
|
|
description: >
|
|
The expiration date of the room in milliseconds since the Unix epoch.
|
|
After this date, the room will be closed and no new participants will be allowed to join.
|
|
roomIdPrefix:
|
|
type: string
|
|
example: 'room'
|
|
description: >
|
|
A prefix to be used for the room ID. The room ID will be generated by concatenating this prefix with a unique identifier.
|
|
# maxParticipants:
|
|
# type: integer
|
|
# example: 10
|
|
# description: >
|
|
# The maximum number of participants allowed in the room. If the number of participants exceeds
|
|
# this limit, new participants will not be allowed to join.
|
|
preferences:
|
|
$ref: './meet-room-preferences.yaml#/MeetRoomPreferences'
|
|
description: >
|
|
The preferences for the room. These preferences wil
|