Microsoft Copilot · Schema

AiInteractionCollectionResponse

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
@odata.context string OData context URL.
@odata.nextLink string URL to retrieve the next page of results.
value array
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-aiinteractioncollectionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AiInteractionCollectionResponse",
  "title": "AiInteractionCollectionResponse",
  "type": "object",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "OData context URL.",
      "example": "example_value"
    },
    "@odata.nextLink": {
      "type": "string",
      "format": "uri",
      "description": "URL to retrieve the next page of results.",
      "example": "https://www.example.com"
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AiInteraction"
      },
      "example": []
    }
  }
}