-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemperatureHumiditySensor.A5_04_03.json
More file actions
46 lines (46 loc) · 1.38 KB
/
TemperatureHumiditySensor.A5_04_03.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"id": "http://openinterconnect.org/enoceanmapping/schemas/TemperatureHumiditySensor.A5_04_03.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description" : "Copyright (c) 2019 Open Connectivity Foundation, Inc. All rights reserved.",
"title": "Temperature and Humidity Sensor EEP A5-04-03",
"definitions": {
"A5_04_03": {
"type": "object",
"properties": {
"temperature": {
"type": "number",
"description": "Current Temperature",
"x-ocf-conversion": {
"x-ocf-alias": "oic.r.temperature",
"x-to-ocf": [
"oic.r.temperature.temperature = temperature",
"oic.r.temperature.units = C",
"oic.r.temperature.range = [-20.0, 60.0]"
],
"x-from-ocf": [
"N/A"
]
}
},
"relativeHumidity": {
"type": "number",
"description": "Humidity",
"x-ocf-conversion": {
"x-ocf-alias": "oic.r.humidity",
"x-to-ocf": [
"oic.r.humidity.humidity = relativeHumidity"
],
"x-from-ocf": [
"N/A"
]
}
}
}
}
},
"type": "object",
"allOf": [
{"$ref": "#/definitions/A5_04_03"}
],
"required": [ "temperature", "relativeHumidity"]
}