-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAgri-Parcel.jsonld
90 lines (90 loc) · 2.55 KB
/
Agri-Parcel.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
{
"@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/Agri-Parcel-context.jsonld"
],
"id": "urn:ngsi-ld:AgriParcel:72d9fb43-53f8-4ec8-a33c-fa931360259a",
"type": "AgriParcel",
"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,
"location": {
"type": "GeoProperty",
"value": {
"type": "Polygon",
"coordinates": [
[
100,
0
],
[
101,
0
],
[
101,
1
],
[
100,
1
],
[
100,
0
]
]
}
},
"area": {
"type": "Property",
"value": 200,
"unitCode": "MTK"
},
"description": {
"type": "Property",
"value": "Spring wheat"
},
"category": {
"type": "Property",
"value": "arable"
},
"hasAgriParcelParent": {
"type": "Relationship",
"object": "urn:ngsi-ld:AgriParcel:1ea0f120-4474-11e8-9919-672036642081"
},
"hasAgriParcelChildren": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:AgriParcel:26ba4be0-4474-11e8-8ec1-ab9e0ea93835",
"urn:ngsi-ld:AgriParcel:2d5b8874-4474-11e8-8d6b-dbe14425b5e4"
]
},
"hasAgriCrop": {
"type": "Relationship",
"object": "urn:ngsi-ld:AgriCrop:36021150-4474-11e8-a721-af07c5fae7c8"
},
"cropStatus": {
"type": "Property",
"value": "seeded"
},
"lastPlantedAt": {
"type": "Property",
"value": "2016-08-23T10:18:16Z"
},
"hasAgriSoil": {
"type": "Relationship",
"object": "urn:ngsi-ld:AgriSoil:429d1338-4474-11e8-b90a-d3e34ceb73df"
},
"hasDevice": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:Device:4a40aeba-4474-11e8-86bf-03d82e958ce6",
"urn:ngsi-ld:Device:63217d24-4474-11e8-9da2-c3dd3c36891b",
"urn:ngsi-ld:Device:68e091dc-4474-11e8-a398-df010c53b416",
"urn:ngsi-ld:6f44b54e-4474-11e8-8577-d7ff6a8ef551"
]
}
}