Microsoft Graph · Schema
virtualEventPresenterDetails
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| bio | object | Bio of the presenter. |
| company | string | The presenter's company name. |
| jobTitle | string | The presenter's job title. |
| linkedInProfileWebUrl | string | The presenter's LinkedIn profile URL. |
| personalSiteWebUrl | string | The presenter's personal website URL. |
| photo | string | The content stream of the presenter's photo. |
| twitterProfileWebUrl | string | The presenter's Twitter profile URL. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.virtualEventPresenterDetails",
"title": "virtualEventPresenterDetails",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"bio": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.itemBody"
},
{
"type": "object",
"nullable": true
}
],
"description": "Bio of the presenter."
},
"company": {
"type": "string",
"description": "The presenter's company name.",
"nullable": true
},
"jobTitle": {
"type": "string",
"description": "The presenter's job title.",
"nullable": true
},
"linkedInProfileWebUrl": {
"type": "string",
"description": "The presenter's LinkedIn profile URL.",
"nullable": true
},
"personalSiteWebUrl": {
"type": "string",
"description": "The presenter's personal website URL.",
"nullable": true
},
"photo": {
"type": "string",
"description": "The content stream of the presenter's photo.",
"format": "base64url",
"nullable": true
},
"twitterProfileWebUrl": {
"type": "string",
"description": "The presenter's Twitter profile URL.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}