forked from casework/CASE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
location.json
46 lines (45 loc) · 1.02 KB
/
location.json
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": {
"@vocab": "http://case.example.org/core#",
"olo": "http://purl.org/ontology/olo/core#",
"acme": "http://custompb.acme.org/core#"
},
"@graph": [
{
"@id": "location1",
"@type": "Location",
"propertyBundle": [
{
"@type": "SimpleAddress",
"locality": "Seattle",
"region": "WA",
"postalCode": "98052",
"street": "20341 Whitworth Institute 405 N. Whitworth"
},
{
"@type": "acme:InternalLocation",
"floor": 3,
"roomNumber": 345
}
]
},
{
"@id": "location2",
"@type": "Location",
"propertyBundle": [
{
"@type": "SimpleAddress",
"locality": "Paris",
"country": "France",
"postalCode": "F-75002",
"street": "38 Bad Guy Headquarters st."
},
{
"@type": "LatLongCoordinates",
"latitude": 48.860346,
"longitude": 2.331199
}
]
}
]
}