{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.virtualEvent", "title": "microsoft.graph.virtualEvent", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "virtualEvent", "required": [ "@odata.type" ], "type": "object", "properties": { "createdBy": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.communicationsIdentitySet" }, { "type": "object", "nullable": true } ], "description": "The identity information for the creator of the virtual event. Inherited from virtualEvent." }, "description": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.itemBody" }, { "type": "object", "nullable": true } ], "description": "A description of the virtual event." }, "displayName": { "type": "string", "description": "The display name of the virtual event.", "nullable": true }, "endDateTime": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" }, { "type": "object", "nullable": true } ], "description": "The end time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone." }, "externalEventInformation": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.virtualEventExternalInformation" }, "description": "The external information of a virtual event. Returned only for event organizers or coorganizers; otherwise, null." }, "settings": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.virtualEventSettings" }, { "type": "object", "nullable": true } ], "description": "The virtual event settings." }, "startDateTime": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" }, { "type": "object", "nullable": true } ], "description": "Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone." }, "status": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.virtualEventStatus" }, { "type": "object", "nullable": true } ], "description": "The status of the virtual event. The possible values are: draft, published, canceled, and unknownFutureValue." }, "presenters": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.virtualEventPresenter" }, "description": "The virtual event presenters.", "x-ms-navigationProperty": true }, "sessions": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.virtualEventSession" }, "description": "The sessions for the virtual event.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } }, "discriminator": { "propertyName": "@odata.type", "mapping": { "#microsoft.graph.virtualEventTownhall": "#/components/schemas/microsoft.graph.virtualEventTownhall", "#microsoft.graph.virtualEventWebinar": "#/components/schemas/microsoft.graph.virtualEventWebinar" } } } ] }