{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StyleResource", "title": "StyleResource", "type": "object", "properties": { "key": { "type": "string", "description": "Resource key name" }, "type": { "type": "string", "description": "Resource type (Brush, Double, CornerRadius, etc.)" }, "value": { "type": "string", "description": "Default value" }, "themeVariants": { "type": "object", "properties": { "light": { "type": "string" }, "dark": { "type": "string" }, "highContrast": { "type": "string" } } } } }