{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MenusLookAndFeel", "title": "MenusLookAndFeel", "required": [ "color", "hoverOrFocus" ], "type": "object", "properties": { "hoverOrFocus": { "required": [ "backgroundColor" ], "type": "object", "properties": { "backgroundColor": { "type": "string" } }, "example": "example_value" }, "color": { "type": "string", "example": "example_value" } } }