{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LookAndFeelSettings", "title": "LookAndFeelSettings", "required": [ "custom", "global", "selected" ], "type": "object", "properties": { "selected": { "type": "string", "enum": [ "global", "custom" ], "example": "global" }, "global": { "$ref": "#/components/schemas/LookAndFeel" }, "theme": { "$ref": "#/components/schemas/LookAndFeel" }, "custom": { "$ref": "#/components/schemas/LookAndFeel" } } }