Microsoft Graph · Schema

microsoft.graph.aadUserConversationMember

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaaduserconversationmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.aadUserConversationMember",
  "title": "microsoft.graph.aadUserConversationMember",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.conversationMember"
    },
    {
      "title": "aadUserConversationMember",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "description": "The email address of the user.",
          "nullable": true
        },
        "tenantId": {
          "type": "string",
          "description": "The tenant ID of the Microsoft Entra user.",
          "nullable": true
        },
        "userId": {
          "type": "string",
          "description": "The user ID of the Microsoft Entra user.",
          "nullable": true
        },
        "user": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.user"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.aadUserConversationMember"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.aadUserConversationMember"
}