GitHub Copilot · Schema

PullRequestModel

Pull request summary 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_pr_summaries_created integer Total number of pull request summaries generated.
total_engaged_users integer
View JSON Schema on GitHub

JSON Schema

github-copilot-pullrequestmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PullRequestModel",
  "title": "PullRequestModel",
  "type": "object",
  "description": "Pull request summary 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_pr_summaries_created": {
      "type": "integer",
      "description": "Total number of pull request summaries generated.",
      "example": 10
    },
    "total_engaged_users": {
      "type": "integer",
      "example": 10
    }
  }
}