Microsoft Graph · Schema

microsoft.graph.onlineMeetingEngagementConversation

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphonlinemeetingengagementconversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.onlineMeetingEngagementConversation",
  "title": "microsoft.graph.onlineMeetingEngagementConversation",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.engagementConversation"
    },
    {
      "title": "onlineMeetingEngagementConversation",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "moderationState": {
          "$ref": "#/components/schemas/microsoft.graph.engagementConversationModerationState"
        },
        "onlineMeetingId": {
          "type": "string",
          "description": "The unique identifier of the online meeting associated with this conversation. The online meeting ID links the conversation to a specific meeting instance."
        },
        "organizer": {
          "$ref": "#/components/schemas/microsoft.graph.engagementIdentitySet"
        },
        "upvoteCount": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The number of upvotes the conversation received.",
          "format": "int32",
          "readOnly": true
        },
        "onlineMeeting": {
          "$ref": "#/components/schemas/microsoft.graph.onlineMeeting"
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.onlineMeetingEngagementConversation"
        }
      },
      "description": "A conversation for Teams QA online meeting."
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.onlineMeetingEngagementConversation"
}