Microsoft Graph · Schema

processContentRequest

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
activityMetadata object
contentEntries array A collection of content entries to be processed. Each entry contains the content itself and its metadata. Use conversation metadata for content like prompts and responses and file metadata for files.
deviceMetadata object
integratedAppMetadata object
protectedAppMetadata object Metadata about the protected application making the request. Required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprocesscontentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.processContentRequest",
  "title": "processContentRequest",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "activityMetadata": {
      "$ref": "#/components/schemas/microsoft.graph.activityMetadata"
    },
    "contentEntries": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.processContentMetadataBase"
      },
      "description": "A collection of content entries to be processed. Each entry contains the content itself and its metadata. Use conversation metadata for content like prompts and responses and file metadata for files. Required."
    },
    "deviceMetadata": {
      "$ref": "#/components/schemas/microsoft.graph.deviceMetadata"
    },
    "integratedAppMetadata": {
      "$ref": "#/components/schemas/microsoft.graph.integratedApplicationMetadata"
    },
    "protectedAppMetadata": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.protectedApplicationMetadata"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Metadata about the protected application making the request. Required."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}