{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.virtualEventPresenter", "title": "microsoft.graph.virtualEventPresenter", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "virtualEventPresenter", "required": [ "@odata.type" ], "type": "object", "properties": { "email": { "type": "string", "description": "Email address of the presenter.", "nullable": true }, "identity": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.identity" }, { "type": "object", "nullable": true } ], "description": "Identity information of the presenter. The supported identities are: communicationsGuestIdentity and communicationsUserIdentity." }, "presenterDetails": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.virtualEventPresenterDetails" }, { "type": "object", "nullable": true } ], "description": "Other details about the presenter. This property returns null when the virtual event type is virtualEventTownhall." }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.virtualEventPresenter" }