GitHub Copilot · Schema

SelectedUsersRequest

A list of usernames to add or remove from the Copilot subscription.

AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity

Properties

Name Type Description
selected_usernames array List of GitHub usernames who are organization members.
View JSON Schema on GitHub

JSON Schema

github-copilot-selectedusersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectedUsersRequest",
  "title": "SelectedUsersRequest",
  "type": "object",
  "description": "A list of usernames to add or remove from the Copilot subscription.",
  "properties": {
    "selected_usernames": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of GitHub usernames who are organization members.",
      "minItems": 1,
      "example": []
    }
  },
  "required": [
    "selected_usernames"
  ]
}