-
Notifications
You must be signed in to change notification settings - Fork 8
/
Vehicle-Fault.jsonld
51 lines (51 loc) · 1.42 KB
/
Vehicle-Fault.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
{
"@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/Vehicle-Fault-context.jsonld"
],
"id": "urn:ngsi-ld:VehicleFault:4939200a-5ef5-4266-8c91-1f82ad3b543b",
"type": "VehicleFault",
"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,
"vehicle": {
"type": "Relationship",
"object": "urn:ngsi-ld:Vehicle:1fa179a6-b507-4857-ad72-eb5513ef05c6"
},
"observedAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"eventType": {
"type": "Property",
"value": "emergency"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
-104.99404,
39.75621
]
}
},
"processingType": {
"type": "Property",
"value": "systemHandled"
},
"resolvedAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"dtCode": {
"type": "Property",
"value": "EMERG-1234-a"
},
"faultLog": {
"type": "Property",
"value": "Emergency stop. Fault with engine"
}
}