Microsoft Copilot · Schema

SearchResponse

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
@odata.nextLink string URL to retrieve the next page of results, if available.
totalCount integer Total number of matching results.
searchHits array Collection of search result items.
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-searchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchResponse",
  "title": "SearchResponse",
  "type": "object",
  "properties": {
    "@odata.nextLink": {
      "type": "string",
      "format": "uri",
      "description": "URL to retrieve the next page of results, if available.",
      "example": "https://www.example.com"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of matching results.",
      "example": 10
    },
    "searchHits": {
      "type": "array",
      "description": "Collection of search result items.",
      "items": {
        "$ref": "#/components/schemas/SearchHit"
      },
      "example": []
    }
  }
}