{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelectedTeamsRequest", "title": "SelectedTeamsRequest", "type": "object", "description": "A list of team slugs to add or remove from the Copilot subscription.", "properties": { "selected_teams": { "type": "array", "items": { "type": "string" }, "description": "List of team slugs within the organization.", "minItems": 1, "example": [] } }, "required": [ "selected_teams" ] }