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