GitHub Copilot · Schema

CopilotIdeChat

Metrics for Copilot Chat in IDEs.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
total_engaged_users integer Users who prompted Copilot Chat in an IDE.
editors array
View JSON Schema on GitHub

JSON Schema

github-copilot-copilotidechat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopilotIdeChat",
  "title": "CopilotIdeChat",
  "type": "object",
  "description": "Metrics for Copilot Chat in IDEs.",
  "properties": {
    "total_engaged_users": {
      "type": "integer",
      "description": "Users who prompted Copilot Chat in an IDE.",
      "example": 10
    },
    "editors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/IdeChatEditor"
      },
      "example": []
    }
  }
}