forked from casework/CASE-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.json
56 lines (56 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
{
"@context": {
"@vocab": "http://example.org/local#",
"kb": "http://example.org/kb/",
"acme": "http://custompb.acme.org/core#",
"draft": "http://example.org/draft#",
"olo": "http://purl.org/ontology/olo/core#",
"uco-core": "https://unifiedcyberontology.org/ontology/uco/core#",
"uco-location": "https://unifiedcyberontology.org/ontology/uco/location#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "kb:location1",
"@type": "uco-location:Location",
"uco-core:hasFacet": [
{
"@type": "uco-location:SimpleAddress",
"uco-location:locality": "Seattle",
"uco-location:region": "WA",
"uco-location:postalCode": "98052",
"uco-location:street": "20341 Whitworth Institute 405 N. Whitworth"
},
{
"@type": "acme:InternalLocation",
"acme:floor": 3,
"acme:roomNumber": 345
}
]
},
{
"@id": "kb:location2",
"@type": "uco-location:Location",
"uco-core:hasFacet": [
{
"@type": "uco-location:SimpleAddress",
"uco-location:locality": "Paris",
"uco-location:country": "France",
"uco-location:postalCode": "F-75002",
"uco-location:street": "38 Bad Guy Headquarters st."
},
{
"@type": "uco-location:LatLongCoordinates",
"uco-location:latitude": {
"@type": "xsd:decimal",
"@value": "48.860346"
},
"uco-location:longitude": {
"@type": "xsd:decimal",
"@value": "2.331199"
}
}
]
}
]
}