Skip to content

Instantly share code, notes, and snippets.

@cgueret
Created December 21, 2016 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgueret/da13f0411eab006c4a472265cb9b58e9 to your computer and use it in GitHub Desktop.
Save cgueret/da13f0411eab006c4a472265cb9b58e9 to your computer and use it in GitHub Desktop.
RDF description for a cat, a picture and a dataset
# The RDF document describing the dataset
<http://example.org/cat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> <http://example.org/cat> .
<http://example.org/cat> <http://www.w3.org/2000/01/rdf-schema#label> "RDF description for cats"@en-GB <http://example.org/cat> .
<http://example.org/cat> <http://purl.org/dc/terms/license> <http://www.gnu.org/copyleft/fdl.html> <http://example.org/cat> .
<http://example.org/cat> <http://xmlns.com/foaf/0.1/primaryTopic> <http://example.org/cats#id> <http://example.org/cat> .
<http://example.org/cats#id> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdfs.org/ns/void#Dataset> <http://example.org/cat> .
<http://example.org/cats#id> <http://www.w3.org/2000/01/rdf-schema#label> "Cats !"@en-GB <http://example.org/cat> .
<http://example.org/cats#id> <http://rdfs.org/ns/void#subset> <http://example.org/image#id> <http://example.org/cat> .
# The document describing a picture and a cat
<http://example.org/image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Document> <http://example.org/image> .
<http://example.org/image> <http://www.w3.org/2000/01/rdf-schema#label> "RDF description for a picture and a cat"@en-GB <http://example.org/image> .
<http://example.org/image> <http://purl.org/dc/terms/license> <http://www.gnu.org/copyleft/fdl.html> <http://example.org/image> .
<http://example.org/image> <http://xmlns.com/foaf/0.1/primaryTopic> <http://example.org/image#id> <http://example.org/image> .
<http://example.org/image#id> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Image> <http://example.org/image> .
<http://example.org/image#id> <http://www.w3.org/2000/01/rdf-schema#label> "Image depicting a cat"@en-GB <http://example.org/image> .
<http://example.org/image#id> <http://xmlns.com/foaf/0.1/depicts> <http://example.org/cat#id> <http://example.org/image> .
<http://example.org/cat#id> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Agent> <http://example.org/image> .
<http://example.org/cat#id> <http://www.w3.org/2000/01/rdf-schema#label> "A cat"@en-GB <http://example.org/image> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment