Microsoft Graph · Schema

teamworkOnlineMeetingInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
calendarEventId string The identifier of the calendar event associated with the meeting.
joinWebUrl string The URL that users click to join or uniquely identify the meeting.
organizer object The organizer of the meeting.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamworkonlinemeetinginfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamworkOnlineMeetingInfo",
  "title": "teamworkOnlineMeetingInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "calendarEventId": {
      "type": "string",
      "description": "The identifier of the calendar event associated with the meeting.",
      "nullable": true
    },
    "joinWebUrl": {
      "type": "string",
      "description": "The URL that users click to join or uniquely identify the meeting.",
      "nullable": true
    },
    "organizer": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.teamworkUserIdentity"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The organizer of the meeting."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}