{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReceptionInfo", "title": "ReceptionInfo", "type": "object", "required": [ "receptionEnabled" ], "properties": { "receptionEnabled": { "type": "boolean", "example": true, "description": "Set to `true` to enable the Receptionist Client feature." }, "monitoredMembers": { "type": "array", "items": { "$ref": "#/components/schemas/MonitoredMemberObject" }, "description": "List of people, workspaces or virtual lines to monitor." } } }