{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Control",
"title": "Control",
"type": "object",
"properties": {
"locked": {
"type": "boolean",
"description": "Whether the meeting is locked or not."
},
"recordingStarted": {
"type": "boolean",
"example": true,
"description": "The value can be true or false, it indicates the meeting recording started or not."
},
"recordingPaused": {
"type": "boolean",
"example": true,
"description": "The value can be true or false, it indicates the meeting recording paused or not."
}
}
}