Skip to content

Instantly share code, notes, and snippets.

@labra
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save labra/f8637ab9bff77fb58655 to your computer and use it in GitHub Desktop.

Select an option

Save labra/f8637ab9bff77fb58655 to your computer and use it in GitHub Desktop.
Ejemplo de modelado en RDF
@prefix : <http://uniovi.es> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<http://uniovi.es> dc:creator :Juan .
:Juan foaf:name "Juan Gallardo" ;
foaf:age 26 ;
foaf:mbox "juan@uniovi.es" .
<http://euitio.uniovi.es> dc:creator :Isabel, :Juan .
:Isabel foaf:name "Isabel Castilla" ;
foaf:age 25 ;
foaf:mbox "isa@uniovi.es" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment