{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HeaderLookAndFeel", "title": "HeaderLookAndFeel", "required": [ "backgroundColor", "button", "primaryNavigation", "search", "secondaryNavigation" ], "type": "object", "properties": { "backgroundColor": { "type": "string", "example": "example_value" }, "button": { "$ref": "#/components/schemas/ButtonLookAndFeel" }, "primaryNavigation": { "$ref": "#/components/schemas/NavigationLookAndFeel" }, "secondaryNavigation": { "$ref": "#/components/schemas/NavigationLookAndFeel" }, "search": { "$ref": "#/components/schemas/SearchFieldLookAndFeel" } } }