-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy paththing-model.json
41 lines (41 loc) · 1.01 KB
/
thing-model.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
{
"thingId": "org.eclipse.ditto.example:raspberry",
"acl": {
"ditto": {
"READ": true,
"WRITE": true,
"ADMINISTRATE": true
},
"raspberry": {
"READ": true,
"WRITE": true,
"ADMINISTRATE": false
}
},
"attributes": {
"manufacturer": "Raspberry Pi Foundation",
"hostname": "Raspditto"
},
"features": {
"IlluminanceSensor_0": {
"properties": {
"sensorValue": 3333.3,
"lastUpdate": "2017-10-16 15:07:31.436733",
"samplingRate": 1
}
},
"Buzzer_0": {
"properties": {
"buzz": false
}
},
"TemperatureHumiditySensor_0": {
"properties": {
"temperatureValue": 20.5,
"humidityValue": 51,
"lastUpdate": "2017-10-16 15:07:31.436733",
"samplingRate": 1
}
}
}
}