
BASE <https://data.escr.fr/wiki/Utilisateur:Mythmaker2/Projet>

PREFIX ex: <http://www.example.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

<Ville> rdf:type rdfs:Class.

<Velo> rdf:type rdfs:Class.

<nom> rdf:type rdf:Property .
<nom>  rdfs:domain <Ville>.

<nombre_velos> rdf:type rdf:Property .
<nombre_velos>  rdfs:domain <Ville>.

<lieu> rdf:type rdf:Property .
<lieu>  rdfs:domain <Velo>.

<disponibilite> rdf:type rdf:Property .
<disponibilite>  rdfs:domain <Velo>.

<appartenance> rdf:type rdf:Property .
<appartenance>  rdfs:domain <Velo>.

ex:Paris rdf:type <Ville> .
ex:Paris <nom> "Paris".
ex:Paris <nombre_velos> 2 .

ex:Rennes rdf:type <Ville> .
ex:Rennes <nom> "Rennes".
ex:Rennes <nombre_velos> 1 .

ex:Robert rdf:type <Velo> .
ex:Robert <lieu> "Rennes" .
ex:Robert <appartenance> "Robert".
ex:Robert <disponibilite> 25 .

ex:Gregory rdf:type <Velo> .
ex:Gregory <lieu> "Paris" .
ex:Gregory <appartenance> "Gregory".
ex:Gregory <disponibilite> 100 .

ex:Fabien rdf:type <Velo> .
ex:Fabien <lieu> "Paris" .
ex:Fabien <appartenance> "Fabien".
ex:Fabien <disponibilite> 50 .
