Microsoft Copilot · Schema

RetrievalResponse

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
retrievalHits array Collection of retrieval results with text extracts.
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-retrievalresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RetrievalResponse",
  "title": "RetrievalResponse",
  "type": "object",
  "properties": {
    "retrievalHits": {
      "type": "array",
      "description": "Collection of retrieval results with text extracts.",
      "items": {
        "$ref": "#/components/schemas/RetrievalHit"
      },
      "example": []
    }
  }
}