Created
February 13, 2017 03:39
-
-
Save baskaufs/b92e5524ac042be6d635f3d83ed7c1da to your computer and use it in GitHub Desktop.
another named graph used in blog examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | |
@prefix dc: <http://purl.org/dc/elements/1.1/>. | |
@prefix foaf: <http://xmlns.com/foaf/0.1/>. | |
@prefix dcterms: <http://purl.org/dc/terms/>. | |
@prefix schema: <http://schema.org/>. | |
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong> | |
rdfs:label "Baiyugong"@zh-latn-pinyin; | |
a geo:SpatialThing. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong#Zhengdian> | |
rdfs:label "Zhengdian "@zh-latn-pinyin; | |
schema:containedInPlace <http://lod.vanderbilt.edu/historyart/site/Baiyugong>; | |
a schema:LandmarksOrHistoricalBuildings. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong#Shanmen> | |
rdfs:label "Shanmen"@zh-latn-pinyin; | |
schema:containedInPlace <http://lod.vanderbilt.edu/historyart/site/Baiyugong>; | |
a schema:LandmarksOrHistoricalBuildings. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong#Sanxiandian> | |
rdfs:label "Sanxiandian"@zh-latn-pinyin; | |
schema:containedInPlace <http://lod.vanderbilt.edu/historyart/site/Baiyugong>; | |
a schema:LandmarksOrHistoricalBuildings. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong#Houdian> | |
rdfs:label "Houdian"@zh-latn-pinyin; | |
schema:containedInPlace <http://lod.vanderbilt.edu/historyart/site/Baiyugong>; | |
a schema:LandmarksOrHistoricalBuildings. | |
<http://lod.vanderbilt.edu/historyart/site/Baiyugong.ttl> | |
dc:format "text/turtle"; | |
dcterms:creator <http://arthistory.edu>; | |
dcterms:references <http://lod.vanderbilt.edu/historyart/site/Baiyugong>; | |
a foaf:Document. | |
<http://arthistory.edu> | |
rdfs:label "Vanderbilt Department of History of Art"; | |
a foaf:Agent. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment