-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUAV-Event.jsonld
56 lines (56 loc) · 1.56 KB
/
UAV-Event.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
{
"@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/UAV-Event-context.jsonld"
],
"id": "urn:ngsi-ld:UAVEvent:85df05a8-5922-11e8-ad9c-d7fa968d409d",
"type": "UAVEvent",
"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,
"uav": {
"type": "Relationship",
"object": "urn:ngsi-ld:UAV:23821045-33d4-46ec-b777-98f461bf4856"
},
"originator": {
"type": "Relationship",
"object": "urn:ngsi-ld:UAV:23821045-33d4-46ec-b777-98f461bf4856"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
-103.9904,
39.7564
]
}
},
"elevation": {
"type": "Property",
"value": 1000,
"unitCode": "MTR"
},
"startAt": {
"type": "Property",
"value": "2016-08-23T10:18:16Z"
},
"endAt": {
"type": "Property",
"value": "2016-08-23T10:19:16Z"
},
"eventType": {
"type": "Property",
"value": "over height"
},
"description": {
"type": "Property",
"value": "The UAV is flying over a mandatory height limit"
},
"eventResult": {
"type": "Property",
"value": "force back"
}
}