Microsoft Copilot · Schema

CopilotSearchDataSourcesConfiguration

Configuration for data sources to include in the search.

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
oneDrive object OneDrive data source configuration.
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-copilotsearchdatasourcesconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopilotSearchDataSourcesConfiguration",
  "title": "CopilotSearchDataSourcesConfiguration",
  "type": "object",
  "description": "Configuration for data sources to include in the search.",
  "properties": {
    "oneDrive": {
      "type": "object",
      "description": "OneDrive data source configuration.",
      "properties": {
        "filterExpression": {
          "type": "string",
          "description": "KQL expression to scope the search to specific OneDrive paths or properties."
        },
        "resourceMetadataNames": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of metadata field names to return for each search result."
        }
      },
      "example": "example_value"
    }
  }
}