{ "$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" ] }