Last active
August 29, 2015 14:19
-
-
Save labra/f8637ab9bff77fb58655 to your computer and use it in GitHub Desktop.
Ejemplo de modelado en RDF
This file contains hidden or 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 : <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