root.meetingExtensionDefinition.scenes object
Meeting supported scenes.
Properties that reference this object type:
Syntax
Properties
id
The unique identifier for the scene. This ID must be a GUID.
Type
string
Required
✅
Constraints
Supported values
The string value must be a guid.
name
The name of the scene.
Type
string
Required
✅
Constraints
Maximum string length: 128.
Supported values
file
The relative file path to the scenes' metadata json file.
Type
string
Required
✅
Constraints
Maximum string length: 2048.
Supported values
preview
The relative file path to the scenes' PNG preview icon.
Type
string
Required
✅
Constraints
Maximum string length: 2048.
Supported values
maxAudience
The maximum number of audiences supported in the scene.
Type
integer
Required
✅
Constraints
Maximum number value: 50.
Supported values
seatsReservedForOrganizersOrPresenters
The number of seats reserved for organizers or presenters.
Type
integer
Required
✅
Constraints
Maximum number value: 50.
Supported values
Examples
{
"meetingExtensionDefinition": {
"scenes": [
{
"id": "9082c811-7e6a-4174-8173-6ccd57d377e6",
"name": "Getting started sample",
"file": "scenes/sceneMetadata.json",
"preview": "scenes/scenePreview.png",
"maxAudience": 15,
"seatsReservedForOrganizersOrPresenters": 0
}
]
}
}