
BASE <https://data.escr.fr/wiki/Utilisateur:Thomas_duclos#>

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#>

<Adresse> rdf:type rdfs:Class .

<Personne> rdf:type rdfs:Class .
<Personne> rdfs:subClassOf <Adresse> .

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


<lat> rdf:type rdf:Property .
<lat> rdfs:domain <Adresse> .

<lon> rdf:type rdf:Property .
<lon> rdfs:domain <Adresse> .

<Alti> rdf:type rdf:Property .
<Alti> rdfs:domain <Adresse> .

<NumRue> rdf:type rdf:Property .
<NumRu> rdfs:domain <Adresse> .

<NomRue> rdf:type rdf:Property .
<NomRue> rdfs:domain <Adresse> .

<CodePostale> rdf:type rdf:Property .
<CodePostale> rdfs:domain <Adresse> .

<Prenom> rdf:type rdf:Property .
<Prenom> rdfs:domain <Personne> .

<Nom_Famille> rdf:type rdf:Property .
<Nom_Famille> rdfs:domain <Personne> .

<Personne_1> rdf:type <Personne>;
 <Prenom> "Thomas" ;
 <Nom_Famille> "Duclos" ;
 <CodePostale> "75015" ;
 <NomRue> " Rue Desnouettes" ; 
 <NumRue> "12"^^xsd:integer;
 <Alti> "13.3"^^xsd:decimal;
 <lat>  "48.3"^^xsd:decimal;
 <long>  "78.6"^^xsd:decimal;
 <Ville> "Paris".

