-
Notifications
You must be signed in to change notification settings - Fork 49
/
model_pointset.json
42 lines (42 loc) · 1.47 KB
/
model_pointset.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
42
{
"$udmi_version": "1.5.2",
"title": "Pointset Model",
"description": "Pointset representing the abstract system expectation for what the device should be doing, and how it should be configured and operated. This block specifies the expected points that a device holds",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"points": {
"description": "Information about a specific point name of the device.",
"additionalProperties": false,
"maxProperties": 150,
"existingJavaType": "java.util.HashMap<String, PointPointsetModel>",
"patternProperties": {
"^[a-z][a-z0-9]*(_[a-z0-9]+)*$": {
"$ref": "file:model_pointset_point.json#"
}
}
},
"exclude_units_from_config": {
"type": "boolean"
},
"exclude_points_from_config": {
"type": "boolean"
},
"sample_limit_sec": {
"description": "Minimum time between sample updates for the device (including complete and COV updates). Updates more frequent than this should be coalesced into one update.",
"type": "integer",
"minimum": 0,
"maximum": 86400
},
"sample_rate_sec": {
"description": "Maximum time between samples for the device to send out a complete update. It can send out updates more frequently than this. Default to 600.",
"type": "integer",
"minimum": 1,
"maximum": 86400
}
},
"required": [
"points"
]
}