Microsoft Copilot · Schema

ChatMessageRequest

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Properties

Name Type Description
prompt string Natural language prompt to continue the conversation.
enableWebSearch boolean Whether to enable web search grounding for this message.
View JSON Schema on GitHub

JSON Schema

microsoft-copilot-chat-message-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChatMessageRequest",
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "Natural language prompt to continue the conversation."
    },
    "enableWebSearch": {
      "type": "boolean",
      "description": "Whether to enable web search grounding for this message."
    }
  }
}