-
Notifications
You must be signed in to change notification settings - Fork 8
/
Point-of-Interest.jsonld
46 lines (46 loc) · 1.36 KB
/
Point-of-Interest.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
{
"@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/Point-of-Interest-context.jsonld"
],
"id": "urn:ngsi-ld:PointOfInterest:44e47705-90c3-4dbc-a0ae-7810306de5e9",
"type": "PointOfInterest",
"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": "Point",
"coordinates": [
-104.99404,
39.75621
]
}
},
"category": {
"type": "Property",
"value": [
"36"
]
},
"description": {
"type": "Relationship",
"value": "Learn all about mobile at the GSMA Academy"
},
"place": {
"type": "Property",
"value": {
"name": "GSMA Academy",
"address": {
"@type": "https://schema.org/PostalAddress",
"addressLocality": "London",
"postalCode": "EC4N 8AF",
"streetAddress": "25 Walbrook"
},
"telephone": "0212345678"
}
}
}