GitHub Copilot · Schema

IdeChatEditor

IDE Chat metrics for a specific editor.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
name string Name of the editor.
total_engaged_users integer
models array
View JSON Schema on GitHub

JSON Schema

github-copilot-idechateditor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdeChatEditor",
  "title": "IdeChatEditor",
  "type": "object",
  "description": "IDE Chat metrics for a specific editor.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the editor.",
      "example": "Example Title"
    },
    "total_engaged_users": {
      "type": "integer",
      "example": 10
    },
    "models": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/IdeChatModel"
      },
      "example": []
    }
  }
}