GitHub Copilot · Schema

SeatsCreatedResponse

Response after adding users or teams to the Copilot subscription.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
seats_created integer The number of new Copilot seats created.
View JSON Schema on GitHub

JSON Schema

github-copilot-seatscreatedresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SeatsCreatedResponse",
  "title": "SeatsCreatedResponse",
  "type": "object",
  "description": "Response after adding users or teams to the Copilot subscription.",
  "properties": {
    "seats_created": {
      "type": "integer",
      "description": "The number of new Copilot seats created.",
      "example": 10
    }
  },
  "required": [
    "seats_created"
  ]
}