{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IdeChatEditor", "title": "IdeChatEditor", "type": "object", "description": "IDE Chat metrics for a specific editor.", "properties": { "name": { "type": "string", "description": "Name of the editor.", "example": "Example Title" }, "total_engaged_users": { "type": "integer", "example": 10 }, "models": { "type": "array", "items": { "$ref": "#/components/schemas/IdeChatModel" }, "example": [] } } }