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