matterbridge-example-dynamic-platform
Version:
Matterbridge dynamic plugin
59 lines (58 loc) • 1.66 kB
JSON
{
"title": "Matterbridge somfy tahoma plugin",
"description": "matterbridge-somfy-tahoma v. 1.0.7 by https://github.com/Luligu",
"type": "object",
"required": [],
"properties": {
"name": {
"description": "Plugin name",
"type": "string",
"readOnly": true,
"ui:widget": "hidden"
},
"type": {
"description": "Plugin type",
"type": "string",
"readOnly": true,
"ui:widget": "hidden"
},
"whiteList": {
"description": "Only the devices in the list will be exposed. If the list is empty, all the devices will be exposed.",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"selectFrom": "name"
},
"blackList": {
"description": "The devices in the list will not be exposed. If the list is empty, no devices will be excluded.",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"selectFrom": "name"
},
"useInterval": {
"description": "Use interval to refresh the devices",
"type": "boolean",
"default": true
},
"enableServerRvc": {
"description": "Enable the Robot Vacuum Cleaner in server mode (Apple Home will crash unless you use this mode!)",
"type": "boolean",
"default": true
},
"debug": {
"description": "Enable the debug for the plugin (development only)",
"type": "boolean",
"default": false
},
"unregisterOnShutdown": {
"description": "Unregister all devices on shutdown (development only)",
"type": "boolean",
"default": false
}
}
}