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

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

<Production> rdf:type rdfs:Class .

 <coutDeProduction> rdf:type rdf:Property .
 <coutDeProduction>  rdfs:domain <Production>.

<TypeEngin> rdf:type rdf:Property ;
  rdfs:domain <type>.

<Fioul> rdf:type <Production>;
  <coutDeProduction> "150"^^xsd:decimal ;
  <moyenDeProduction> <fioul>.

<Charbon> rdf:type <Production>;
  <coutDeProduction> "100"^^xsd:decimal ;
  <moyenDeProduction> <charbon>. 

<Nucléaire> rdf:type <Production>;
  <coutDeProduction> "50"^^xsd:decimal ;
  <moyenDeProduction> <nucléaire>.


<Solaire> rdf:type <Production>;
  <coutDeProduction> "142"^^xsd:decimal ;
  <moyenDeProduction> <solaire>.
                                                     
