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
|
{
"resources": {
"single": [
{
"uri": "/capability/illuminanceMeasurement/main/0",
"types": [
"oic.r.sensor.illuminance"
],
"interfaces": [
"oic.if.s",
"oic.if.baseline"
]
},
{
"uri": "/capability/doorControl/main/0",
"types": [
"x.com.st.doorcontrol"
],
"interfaces": [
"oic.if.baseline",
"oic.if.a"
]
}
]
},
"resourceTypes": [
{
"type": "oic.r.sensor.illuminance",
"properties": [
{
"key": "illuminance",
"type": "double",
"readOnly": 1,
"mandatory": true,
"isArray": false
}
]
},
{
"type": "x.com.st.doorcontrol",
"properties": [
{
"key": "doorState",
"type": "string",
"readOnly": 3,
"mandatory": true,
"isArray": false
}
]
}
]
}
|