-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDevice.jsonld
115 lines (115 loc) · 2.9 KB
/
Device.jsonld
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"@context": [
"https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/coreContext/ngsi-ld-core-context.json",
"https://raw.githubusercontent.com/GSMADeveloper/NGSI-LD-Entities/master/examples/Device-context.jsonld"
],
"id": "urn:ngsi-ld:Device:ba2d4fd9-f57f-4610-a589-2d52670d14f3",
"type": "Device",
"createdAt": "2017-01-01T01:20:00Z",
"modifiedAt": "2017-05-04T12:30:00Z",
"source": "https://source.example.com",
"dataProvider": "https://provider.example.com",
"entityVersion": 2.0,
"deviceModel": {
"type": "Relationship",
"object": "urn:ngsi-ld:DeviceModel:d1be2e61-d9e7-43cd-9c68-51e0861b3a49"
},
"serialNumber": {
"type": "Property",
"value": "X123456789C"
},
"supplierName": {
"type": "Property",
"value": "ACME Direct, Inc."
},
"countryOfManufacture": {
"type": "Property",
"value": "UK"
},
"factory": {
"type": "Property",
"value": "56A8"
},
"firstUsedAt": {
"type": "Property",
"value": "2017-05-04T11:18:16Z"
},
"lastCalibrationAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"installedAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"manufacturedAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"description": {
"type": "Property",
"value": "Thermocouple"
},
"owner": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:Person:6babd63c-46e6-11e8-aaf6-abd6d570d4ec",
"urn:ngsi-ld:Organization:76f72898-46e6-11e8-8340-53a92642d82a"
]
},
"hardwareVersion": {
"type": "Property",
"value": "1.2"
},
"firmwareVersion": {
"type": "Property",
"value": "2.8.56"
},
"softwareVersion": {
"type": "Property",
"value": "2.5.11"
},
"osVersion": {
"type": "Property",
"value": "8.1"
},
"supportedProtocols": {
"type": "Property",
"value": [
"HTTP",
"HTTPS",
"FTP"
],
"observedAt": "2017-05-04T12:30:00Z"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
-104.99404,
39.75621
]
}
},
"online": {
"type": "Property",
"value": true,
"observedAt": "2017-05-04T12:30:00Z"
},
"status": {
"type": "Property",
"value": "SC1001",
"observedAt": "2017-05-04T12:30:00Z"
},
"batteryLevel": {
"type": "Property",
"value": 0.7,
"observedAt": "2017-05-04T12:30:00Z"
},
"value": {
"type": "Property",
"value": 0.885,
"observedAt": "2017-05-04T12:30:00Z"
}
}