{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "Web UI Info Plugin Configuration", "description": "Configuration for the Web UI Info plugin", "properties": { "enabled": { "type": "boolean", "description": "Enable or disable the plugin", "default": true }, "display_duration": { "type": "number", "description": "How long to display the message (in seconds)", "default": 10, "minimum": 1, "maximum": 300 }, "transition": { "type": "object", "description": "Transition settings", "properties": { "type": { "type": "string", "enum": ["redraw", "fade", "slide", "wipe"], "default": "redraw" }, "speed": { "type": "integer", "description": "Transition speed (1-10)", "default": 2, "minimum": 1, "maximum": 10 }, "enabled": { "type": "boolean", "default": true } } } }, "additionalProperties": false }