mirror of
https://github.com/oznu/homebridge-unifi-occupancy-sensor.git
synced 2025-01-22 11:18:56 +00:00
added config.schema.json
This commit is contained in:
parent
29c88566b1
commit
eadb8c559b
59
config.schema.json
Normal file
59
config.schema.json
Normal file
@ -0,0 +1,59 @@
|
||||
{
|
||||
"pluginAlias": "UniFi Occupancy Sensor",
|
||||
"pluginType": "accessory",
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"title": "Name",
|
||||
"type": "string",
|
||||
"default": "Occupancy Sensor",
|
||||
"minLength": 1
|
||||
},
|
||||
"unifi": {
|
||||
"title": "UniFi Controller Settings",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"controller": {
|
||||
"title": "Controller URL",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"username": {
|
||||
"title": "Username",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"password": {
|
||||
"title": "Password",
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"site": {
|
||||
"title": "Site",
|
||||
"type": "string",
|
||||
"default": "default",
|
||||
"required": true
|
||||
},
|
||||
"secure": {
|
||||
"title": "Validate the Controller SSL Certificate?",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"watch": {
|
||||
"title": "Watched Devices",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "MAC Address",
|
||||
"type": "string",
|
||||
"pattern": "^([a-f0-9]{2}:){5}[a-f0-9]{2}$"
|
||||
}
|
||||
},
|
||||
"watchGuests": {
|
||||
"title": "Watch Guest Networks?",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "homebridge-unifi-occupancy-sensor",
|
||||
"version": "0.0.10",
|
||||
"version": "0.0.11",
|
||||
"description": "An occupancy sensor for Homebridge and UniFi",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
|
Loading…
Reference in New Issue
Block a user