-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathVehicle.jsonld
49 lines (49 loc) · 1.44 KB
/
Vehicle.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
{
"@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-context.jsonld"
],
"id": "urn:ngsi-ld:Vehicle:1fa179a6-b507-4857-ad72-eb5513ef05c6",
"type": "Vehicle",
"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,
"vehicleType": {
"type": "Relationship",
"object": "urn:ngsi-ld:VehicleType:33253089-9cea-4227-889e-61950965f6f9"
},
"fuelType": {
"type": "Property",
"value": "Diesel"
},
"displacement": {
"type": "Property",
"value": 3,
"unitCode": "LTR"
},
"fuelEfficiency": {
"type": "Property",
"value": 10.4,
"unitCode": "km/l"
},
"vehicleModelIntroducedAt": {
"type": "Property",
"value": "2016-08-18T10:18:16Z"
},
"vehicleProductionDiscontinuedAt": {
"type": "Property",
"value": "2016-08-23T10:18:16Z"
},
"vehicleIdentificationNumber": {
"type": "Property",
"value": "2T2GK31U08C041124"
},
"mileageFromOdometer": {
"value": 33015,
"type": "Property",
"unitCode": "SMI",
"observedAt": "2016-08-23T10:18:16Z"
}
}