The LEDMatrix plugin system automatically manages certain core properties that are common to all plugins. These properties are handled by the system and don't need to be explicitly defined in plugin schemas.
The following properties are automatically managed by the system:
-
enabled(boolean)- Default:
true - Description: Enable or disable the plugin
- System-managed by PluginManager
- Default:
-
display_duration(number)- Default:
15 - Range: 1-300 seconds
- Description: How long to display the plugin in seconds
- Can be overridden per-plugin
- Default:
-
live_priority(boolean)- Default:
false - Description: Enable live priority takeover when plugin has live content
- Used by DisplayController for priority scheduling
- Default:
During configuration validation:
- Automatic Injection: Core properties are automatically injected into the validation schema if they're not already defined in the plugin's
config_schema.json - Removed from Required: Core properties are automatically removed from the
requiredarray during validation, since they're system-managed - Default Values Applied: If core properties are missing from a config, defaults are applied automatically:
enabled:true(matchesBasePlugin.__init__)display_duration:15(matchesBasePlugin.get_display_duration())live_priority:false(matchesBasePlugin.has_live_priority())
Plugin schemas can optionally include these properties for documentation purposes, but they're not required:
{
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable this plugin"
},
"display_duration": {
"type": "number",
"default": 15,
"minimum": 1,
"maximum": 300,
"description": "Display duration in seconds"
},
"live_priority": {
"type": "boolean",
"default": false,
"description": "Enable live priority takeover"
}
},
"required": [] // Core properties should NOT be in required array
}Important: Even if you include core properties in your schema, they should NOT be listed in the required array, as the system will automatically remove them during validation.
Core properties are stored in the main config/config.json file:
{
"my-plugin": {
"enabled": true,
"display_duration": 20,
"live_priority": false,
"plugin_specific_setting": "value"
}
}The SchemaManager.validate_config_against_schema() method:
- Injects core properties into the schema
propertiesif not present - Removes core properties from the
requiredarray - Validates the config against the enhanced schema
- Applies defaults for missing core properties
When generating default configurations or merging with defaults:
- Core properties get their system defaults if not in the schema
- User-provided values override system defaults
- Missing core properties are filled in automatically
- Don't require core properties: Never include
enabled,display_duration, orlive_priorityin your schema'srequiredarray - Optional inclusion: You can include core properties in your schema for documentation, but it's optional
- Use system defaults: Rely on system defaults unless your plugin needs specific values
- Document if included: If you include core properties in your schema, use the same defaults as the system to avoid confusion
This error should not occur with the current implementation. If you see it:
- Check that your schema doesn't have
enabledin therequiredarray - Ensure you're using the latest version of
SchemaManager - Verify the schema is being loaded correctly
If core properties aren't being applied:
- Check that defaults are being merged (see
save_plugin_config()) - Verify the schema manager is injecting core properties
- Check plugin initialization to ensure defaults are applied