{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SupportAndConfiguredInfo", "title": "SupportAndConfiguredInfo", "type": "object", "properties": { "supported": { "type": "boolean", "example": true, "description": "Is the workspace capability supported or not." }, "configured": { "type": "boolean", "example": true, "description": "Is the workspace capability configured or not." } }, "description": "Support and configured information for a workspace capability.", "example": { "supported": true, "configured": true } }