generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.schema.json
34 lines (34 loc) · 842 Bytes
/
config.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"pluginAlias": "SleepmeHomebridgePlugin",
"pluginType": "platform",
"singular": true,
"headerDisplay": "To create Sleepme API keys, set up a developer account [here](https://docs.developer.sleep.me/docs/)",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Homebridge Sleepme"
},
"api_keys": {
"title": "API Keys",
"type": "array",
"items": {
"title": "Key",
"type": "string"
}
},
"sleepme_api_url": {
"title": "Sleepme API URL",
"type": "string",
"required": true,
"default": "https://api.developer.sleep.me",
"condition": {
"functionBody": "return false;"
}
}
}
}
}