Microsoft Graph · Schema

microsoft.graph.processConversationMetadata

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprocessconversationmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.processConversationMetadata",
  "title": "microsoft.graph.processConversationMetadata",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.processContentMetadataBase"
    },
    {
      "title": "processConversationMetadata",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "accessedResources": {
          "type": "array",
          "items": {
            "type": "string",
            "nullable": true
          },
          "description": "List of resources (for example, file URLs, web URLs) accessed during the generation of this message (relevant for bot interactions)."
        },
        "parentMessageId": {
          "type": "string",
          "description": "Identifier of the parent message in a threaded conversation, if applicable.",
          "nullable": true
        },
        "plugins": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.aiInteractionPlugin"
          },
          "description": "List of plugins used during the generation of this message (relevant for AI/bot interactions)."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.processConversationMetadata"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.processConversationMetadata"
}