-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
87 lines (87 loc) · 2.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"pluginAlias": "Braava",
"pluginType": "accessory",
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"required": true
},
"model": {
"type": "string",
"title": "Model",
"required": true
},
"blid": {
"type": "string",
"title": "blid",
"required": true
},
"robotpwd": {
"type": "string",
"title": "Robot Password",
"required": true
},
"ipaddress": {
"type": "string",
"title": "IP Address",
"required": true
},
"autoRefreshEnabled": {
"type": "boolean",
"title": "Auto Refresh Enabled",
"required": false
},
"keepAliveEnabled": {
"type": "boolean",
"title": "Enable Keep Alive",
"required": false
},
"cacheTTL": {
"type": "number",
"title": "TTL Cache",
"required": false
},
"orderedClean": {
"type": "object",
"title": "Ordered Clean Config",
"required": false,
"properties": {
"ordered": {
"type": "number",
"title": "Ordered",
"required": false
},
"regions": {
"type": "array",
"title": "Regions",
"required": false,
"description": "Enter IDs of regions to be cleaned",
"items": {
"type": "object",
"properties": {
"region_id": {
"type": "string",
"title": "Region ID",
"required": false
}
}
}
},
"pmap_id": {
"type": "string",
"title": "PMap ID",
"required": false
},
"user_pmapv_id": {
"type": "string",
"title": "User PMapV ID",
"required": false
}
}
}
}
}
}