GitHub Copilot · Schema

MetricsLanguageSummary

Summary of engagement for a programming language.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
name string Programming language name.
total_engaged_users integer
View JSON Schema on GitHub

JSON Schema

github-copilot-metricslanguagesummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricsLanguageSummary",
  "title": "MetricsLanguageSummary",
  "type": "object",
  "description": "Summary of engagement for a programming language.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Programming language name.",
      "example": "Example Title"
    },
    "total_engaged_users": {
      "type": "integer",
      "example": 10
    }
  }
}