-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
41 lines (41 loc) · 2 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
{
"pluginAlias": "EsphomeMiFlowerCare",
"pluginType": "accessory",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true
},
"url": {
"title": "Base url",
"type": "string",
"required": true,
"description": "The baseurl for the esp32, including port. and no trailing /"
},
"temperature_id": {
"title": "Temperature Id",
"type": "string",
"description": "The id refers to the id of the component - this ID is created by taking the name of the component, stripping out all non-alphanumeric characters, making everything lowercase and replacing all spaces by underscores."
},
"moisture_id": {
"title": "Moisture Id",
"type": "string",
"description": "The id refers to the id of the component - this ID is created by taking the name of the component, stripping out all non-alphanumeric characters, making everything lowercase and replacing all spaces by underscores."
},
"illuminance_id": {
"title": "Illuminance Id",
"type": "string",
"description": "The id refers to the id of the component - this ID is created by taking the name of the component, stripping out all non-alphanumeric characters, making everything lowercase and replacing all spaces by underscores."
},
"soil_conductivity_id": {
"title": "Soil conductivity Id",
"type": "string",
"description": "The id refers to the id of the component - this ID is created by taking the name of the component, stripping out all non-alphanumeric characters, making everything lowercase and replacing all spaces by underscores."
}
}
}
}