GitHub Copilot · Schema

IdeChatModel

IDE Chat metrics for a specific AI model.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
name string
is_custom_model boolean
custom_model_training_date stringnull
total_engaged_users integer
total_chats integer Total number of chat conversations.
total_chat_insertion_events integer Number of times chat suggestions were inserted into code.
total_chat_copy_events integer Number of times chat responses were copied.
View JSON Schema on GitHub

JSON Schema

github-copilot-idechatmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdeChatModel",
  "title": "IdeChatModel",
  "type": "object",
  "description": "IDE Chat metrics for a specific AI model.",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "is_custom_model": {
      "type": "boolean",
      "example": true
    },
    "custom_model_training_date": {
      "type": [
        "string",
        "null"
      ],
      "example": "example_value"
    },
    "total_engaged_users": {
      "type": "integer",
      "example": 10
    },
    "total_chats": {
      "type": "integer",
      "description": "Total number of chat conversations.",
      "example": 10
    },
    "total_chat_insertion_events": {
      "type": "integer",
      "description": "Number of times chat suggestions were inserted into code.",
      "example": 10
    },
    "total_chat_copy_events": {
      "type": "integer",
      "description": "Number of times chat responses were copied.",
      "example": 10
    }
  }
}