GitHub Copilot · Schema

CopilotSeatsResponse

Paginated list of Copilot seat assignments.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
total_seats integer Total number of Copilot seats for the organization.
seats array
View JSON Schema on GitHub

JSON Schema

github-copilot-copilotseatsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopilotSeatsResponse",
  "title": "CopilotSeatsResponse",
  "type": "object",
  "description": "Paginated list of Copilot seat assignments.",
  "properties": {
    "total_seats": {
      "type": "integer",
      "description": "Total number of Copilot seats for the organization.",
      "example": 10
    },
    "seats": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CopilotSeatDetail"
      },
      "example": []
    }
  },
  "required": [
    "total_seats",
    "seats"
  ]
}