forked from khessler/Cemeteries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCemeterySchema_JSONLD.json
More file actions
28 lines (28 loc) · 965 Bytes
/
CemeterySchema_JSONLD.json
File metadata and controls
28 lines (28 loc) · 965 Bytes
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
{
"@context": {
"foaf": "http: //xmlns.com/foaf/spec/#term_",
"schema": "http: //schema.org/",
"@type": "foaf: Person",
"name": "foaf: name",
"lifespan": {
"@type": "schema: Date",
"birth": "schema: birthdate",
"death": "schema: deathDate"
},
"resting_place": {
"@type": "schema:Cemetery",
"cemetery_name": "schema:name",
"location": {
"latitude": "schema:latitude",
"longitude": "schema:longitude",
"city": "schema:addressLocality",
"state": "schema:addressRegion",
"county": "http://dbpedia.org/ontology/county",
"country": "schema:addressCountry"},
"headstone": {
"@type": "http://dbpedia.org/resource/Headstone",
"headstone_image": "http://schema.org/photo"
}
}
}
}