-
Notifications
You must be signed in to change notification settings - Fork 48
/
state.json
48 lines (48 loc) · 1.15 KB
/
state.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
48
{
"$udmi_version": "1.5.2",
"title": "State",
"$section": "Messages",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "[State](../docs/messages/state.md) message, defined by [`state.json`]",
"additionalProperties": false,
"required": [
"timestamp",
"version",
"system"
],
"properties": {
"timestamp": {
"description": "RFC 3339 UTC Timestamp the state payload was generated",
"type": "string",
"format": "date-time",
"examples": ["2019-01-17T14:02:29.364Z"]
},
"version": {
"description": "Version of the UDMI schema",
"type": "string"
},
"upgraded_from": {
"description": "Original version of schema pre-upgrade",
"type": "string"
},
"system": {
"$ref": "file:state_system.json#"
},
"gateway": {
"$ref": "file:state_gateway.json#"
},
"discovery": {
"$ref": "file:state_discovery.json#"
},
"localnet": {
"$ref": "file:state_localnet.json#"
},
"blobset": {
"$ref": "file:state_blobset.json#"
},
"pointset": {
"$ref": "file:state_pointset.json#"
}
}
}