Skip to content

Instantly share code, notes, and snippets.

@ldodds
Created March 30, 2012 16:17
Show Gist options
  • Save ldodds/2252569 to your computer and use it in GitHub Desktop.
Save ldodds/2252569 to your computer and use it in GitHub Desktop.
Turtle
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rel: <http://www.perceive.net/schemas/relationship/> .
<http://example.org/#green-goblin>
rel:enemyOf <http://example.org/#spiderman> ;
a foaf:Person ;
foaf:name "Green Goblin" .
<http://example.org/#spiderman>
rel:enemyOf <http://example.org/#green-goblin> ;
a foaf:Person ;
foaf:name "Spiderman" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment