Microsoft Copilot · Schema

ChatConversationResponse

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
conversationId string The unique identifier for the conversation for multi-turn use.
message object
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-chatconversationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatConversationResponse",
  "title": "ChatConversationResponse",
  "type": "object",
  "properties": {
    "conversationId": {
      "type": "string",
      "description": "The unique identifier for the conversation for multi-turn use.",
      "example": "500123"
    },
    "message": {
      "$ref": "#/components/schemas/ChatMessage"
    }
  }
}