-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.schema.json
52 lines (52 loc) · 1.79 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"pluginAlias": "Hejhome",
"pluginType": "platform",
"singular": true,
"headerDisplay": "<p align='center'><img height='100px' src='https://raw.githubusercontent.com/chazepps/homebridge-hejhome/latest/branding/logo.png'></p>\n\nThe **Hejhome** plugin allows you to control Hejhome Devices. \n\nTo get started link your Hejhome account.\n\n1. Download Hejhome App on App Store or Google Play Store.\n\n2. Register a Hejhome account and log in into your account.\n\n3. Input your `Email` and `Password` into the parameters below.",
"footerDisplay": "Please raise any issues on our [project page](https://github.com/chazepps/homebridge-hejhome/issues).\n\nIf you would like to have other Hejhome Devices added to this plugin fill out [Feature Request Form](https://github.com/chazepps/homebridge-hejhome/issues/new?assignees=&labels=&template=feature-request.md).\n\n[Hejhome Website](https://hej.life/)",
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"default": "Hejhome"
},
"credentials": {
"type": "object",
"properties": {
"email": {
"title": "Email",
"type": "string",
"x-schema-form": {
"type": "email"
}
},
"password": {
"title": "Password",
"type": "string",
"x-schema-form": {
"type": "password"
}
}
},
"required": [
"email",
"password"
]
}
}
},
"layout": [
{
"type": "fieldset",
"title": "Hejhome Account Info",
"expandable": true,
"expanded": false,
"items": [
"credentials.email",
"credentials.password"
]
}
]
}