GitHub Copilot · JSON Structure

Github Copilot Pull Request Model Structure

Type: object Properties: 5
AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

PullRequestModel is a JSON Structure definition published by GitHub Copilot, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

name is_custom_model custom_model_training_date total_pr_summaries_created total_engaged_users

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "PullRequestModel",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "is_custom_model": {
      "type": "boolean"
    },
    "custom_model_training_date": {
      "type": "['string', 'null']"
    },
    "total_pr_summaries_created": {
      "type": "integer"
    },
    "total_engaged_users": {
      "type": "integer"
    }
  }
}