GitHub Copilot · Schema

SeatBreakdown

Breakdown of Copilot seat counts by status.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
total integer Total number of Copilot seats.
added_this_cycle integer Seats added in the current billing cycle.
pending_invitation integer Seats with pending invitations.
pending_cancellation integer Seats pending cancellation at end of cycle.
active_this_cycle integer Seats active in the current billing cycle.
inactive_this_cycle integer Seats inactive in the current billing cycle.
View JSON Schema on GitHub

JSON Schema

github-copilot-seat-breakdown-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SeatBreakdown",
  "type": "object",
  "description": "Breakdown of Copilot seat counts by status.",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of Copilot seats."
    },
    "added_this_cycle": {
      "type": "integer",
      "description": "Seats added in the current billing cycle."
    },
    "pending_invitation": {
      "type": "integer",
      "description": "Seats with pending invitations."
    },
    "pending_cancellation": {
      "type": "integer",
      "description": "Seats pending cancellation at end of cycle."
    },
    "active_this_cycle": {
      "type": "integer",
      "description": "Seats active in the current billing cycle."
    },
    "inactive_this_cycle": {
      "type": "integer",
      "description": "Seats inactive in the current billing cycle."
    }
  }
}