forked from faucetsdn/udmi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_pointset_point.json
33 lines (33 loc) · 1.17 KB
/
config_pointset_point.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
{
"$udmi_version": "1.5.2",
"title": "Point Pointset Config",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ref": {
"type": "string",
"description": "Mapping for the point to an internal resource (e.g. BACnet object reference)",
"examples": ["AI1106"]
},
"units": {
"description": "If specified, indicates the units the device should report the data in.",
"type": "string"
},
"set_value": {
"description": "Used for cloud writeback functionality, this field specifies the value for a given point in the device's current units.",
"examples": [22.4]
},
"stop_time": {
"description": "RFC 3339 timestamp for the specified point write easing to stop",
"type": "string",
"format": "date-time",
"examples": ["2019-01-17T14:02:29.364Z"]
},
"cov_increment": {
"type": "number",
"description": "The CoV (change of value) increment, which when set, enables CoV on the point and defines the minimum change in present value of the respective point before an update is published",
"minimum": 0
}
}
}