GitHub Copilot · Schema

CopilotMetricsDay

Aggregated Copilot usage metrics for a single day, broken down by feature, editor, language, and model.

AgentsArtificial IntelligenceCode GenerationCode ReviewCoding AgentsCustom InstructionsDeveloper ToolsExtensionsIDEMachine-LearningMCPMetricsProductivity

Properties

Name Type Description
date string The date these metrics apply to (YYYY-MM-DD).
total_active_users integer Total users with any Copilot activity on this date.
total_engaged_users integer Total users who actively engaged with Copilot features on this date.
copilot_ide_code_completions string
copilot_ide_chat string
copilot_dotcom_chat string
copilot_dotcom_pull_requests string
View JSON Schema on GitHub

JSON Schema

github-copilot-copilot-metrics-day-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CopilotMetricsDay",
  "type": "object",
  "description": "Aggregated Copilot usage metrics for a single day, broken down by feature, editor, language, and model.",
  "properties": {
    "date": {
      "type": "string",
      "description": "The date these metrics apply to (YYYY-MM-DD)."
    },
    "total_active_users": {
      "type": "integer",
      "description": "Total users with any Copilot activity on this date."
    },
    "total_engaged_users": {
      "type": "integer",
      "description": "Total users who actively engaged with Copilot features on this date."
    },
    "copilot_ide_code_completions": {
      "type": "string"
    },
    "copilot_ide_chat": {
      "type": "string"
    },
    "copilot_dotcom_chat": {
      "type": "string"
    },
    "copilot_dotcom_pull_requests": {
      "type": "string"
    }
  }
}