This repository was archived by the owner on Jan 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.schema.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathconfig.schema.json
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
53
54
{
"pluginAlias": "FritzLight",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"required": ["name", "host", "username", "password"],
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "FRITZ! Light",
"description": "Title of this platform in logged events"
},
"host": {
"title": "Host",
"type": "string",
"default": "192.168.178.1",
"description": "IP address of the FRITZ!Box"
},
"username": {
"title": "Username",
"type": "string",
"description": "Username to use for connecting to the FRITZ!Box"
},
"password": {
"title": "Password",
"type": "string",
"description": "Password to use for connecting to the FRITZ!Box"
},
"exposeTemplates": {
"title": "Expose smart home templates",
"type": "boolean",
"description": "Expose smart home templates as simple switches",
"default": true
},
"templatePrefix": {
"title": "Prefix for template devices",
"type": "string",
"description": "Prefix for device template names",
"default": "Template - "
},
"ignoredAccessories": {
"type": "array",
"items": {
"title": "Ignore device",
"type": "string",
"placeholder": "01234 56789",
"description": "The AIN/IPEI of the device (displayed in the FRITZ!Box UI, as-is with full spaces)."
}
}
}
}
}