-
Notifications
You must be signed in to change notification settings - Fork 49
/
config.json
47 lines (47 loc) · 1.18 KB
/
config.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
43
44
45
46
47
{
"$udmi_version": "1.5.0",
"title": "Config",
"description": "The config block controls a device's intended behavior. [Config Documentation](../docs/messages/config.md)",
"$section": "Messages",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"required": [
"timestamp",
"version"
],
"properties": {
"timestamp": {
"description": "RFC 3339 UTC timestamp the configuration was generated",
"type": "string",
"format": "date-time",
"examples": ["2019-01-17T14:02:29.364Z"]
},
"version": {
"description": "Version of the UDMI schema",
"type": "string"
},
"downgraded_from": {
"description": "Original version of schema pre-downgrade",
"type": "string"
},
"system": {
"$ref": "file:config_system.json#"
},
"gateway": {
"$ref": "file:config_gateway.json#"
},
"discovery": {
"$ref": "file:config_discovery.json#"
},
"localnet": {
"$ref": "file:config_localnet.json#"
},
"blobset": {
"$ref": "file:config_blobset.json#"
},
"pointset": {
"$ref": "file:config_pointset.json#"
}
}
}