{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CopilotIdeChat", "title": "CopilotIdeChat", "type": "object", "description": "Metrics for Copilot Chat in IDEs.", "properties": { "total_engaged_users": { "type": "integer", "description": "Users who prompted Copilot Chat in an IDE.", "example": 10 }, "editors": { "type": "array", "items": { "$ref": "#/components/schemas/IdeChatEditor" }, "example": [] } } }