Skip to content

Instantly share code, notes, and snippets.

@labra
Created May 4, 2015 08:13
Show Gist options
  • Save labra/24a1487e100c3123ecd1 to your computer and use it in GitHub Desktop.
Save labra/24a1487e100c3123ecd1 to your computer and use it in GitHub Desktop.
Restaurantes sencillo
@prefix : <http://rest.com/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
_:1 a :Cadena ;
rdfs:label "TA" ;
:restaurantes _:2 .
_:2 a :ListaRestaurantes ;
:contiene _:r1 ;
:contiene _:r2 .
_:r1 a :Restaurante ;
rdfs:label "Los Astures" .
_:r2 a :Restaurante ;
rdfs:label "Los Salmanquinos" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment