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