
BASE <https://data.escr.fr/wiki/Utilisateur:Kevin_vega/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#>
prefix foaf: <http://xmlns.com/foaf/0.1/>

<OffreEnergetique> rdf:type rdfs:Class .

<name> rdf:type rdf:Property .
<name>  rdfs:domain <OffreEnergetique>.

<Energie> rdf:type rdfs:Class .

<prix> rdf:type rdf:Property .
<prix>  rdfs:domain <OffreEnergetique>.

<produit> rdf:type rdf:Property ;
  rdfs:domain <OffreEnergetique>;
  rdfs:range <Energie>.

<prodution> rdf:type rdf:Property .
<prodution>  rdfs:domain <OffreEnergetique>.

<ENGIE_Offre_Aerien> rdf:type <OffreEnergetique>;
  <production> 245 ;
  <prix> "5.99"^^xsd:decimal ;
  <produit> <Aerien> ;
  <name> "ENGIE" .
 

<ENGIE_Offre_Hydraulique> rdf:type <OffreEnergetique>;
  <production> 300 ;
  <prix> "8.26"^^xsd:decimal ;
  <produit> <Hydraulique> ;
  <name> "ENGIE" .

<ENGIE_Offre_Solaire> rdf:type <OffreEnergetique>;
  <production> 175 ;
  <prix> "2.26"^^xsd:decimal ;
  <produit> <Solaire> ;
  <name> "ENGIE" .

<ENGIE_Offre_Thermique> rdf:type <OffreEnergetique>;
  <production> 100 ;
  <prix> "4.36"^^xsd:decimal ;
  <produit> <Thermique> ;
  <name> "ENGIE" .
