{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.roomList", "title": "microsoft.graph.roomList", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.place" }, { "title": "roomList", "required": [ "@odata.type" ], "type": "object", "properties": { "emailAddress": { "type": "string", "description": "The email address of the room list.", "nullable": true }, "rooms": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.room" }, "x-ms-navigationProperty": true }, "workspaces": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workspace" }, "x-ms-navigationProperty": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.roomList" } } } ], "x-ms-discriminator-value": "#microsoft.graph.roomList" }