
BASE <https://data.escr.fr/wiki/Utilisateur:Mdeboffle/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#>

<Mail> rdf:type rdfs:class.

<Attachement> rdf:type rdfs:Class.

<contains> rdf:type rdf:Property;
           rdfs:domain <Mail>;
           rdfs:range <Attachement>.

<mailRecipient> rdf:type rdf:Property;
                rdfs:domain <Mail>.

<mailSize> rdf:type rdf:Property;
           rdf:domain <Mail>.

<AttachementSize> rdf:type rdf:Property;
           rdf:domain <Attachement>.

ex:Image rdf:type <Attachement> .
ex:Image <AttachementSize> "5000"^^xsd:double .

ex:CV rdf:type <Attachement> .
ex:CV <AttachementSize> "500"^^xsd:double .

ex:LM rdf:type <Attachement> .
ex:LM <AttachementSize> "500"^^xsd:double .

ex:Zip rdf:type <Attachement> .
ex:Zip <AttachementSize> "10000"^^xsd:double .

ex:Newsletter rdf:type <Mail> .
ex:Newsletter <mailRecipient> "maxime.deboffle@gmail.com" .
ex:Newsletter <mailSize> "50"^^xsd:double .
ex:Newsletter ex:contains ex:Image .

ex:Candidature rdf:type <Mail>.
ex:Candidature <mailSize> "100"^^xsd:double .
ex:Candidature <mailRecipient> "contact@exapceo.com" .
ex:Candidature ex:contains ex:CV .
ex:Candidature ex:contains ex:LM .

ex:SendManga rdf:type <Mail> .
ex:SendManga <mailSize> "100"^^xsd:double .
ex:SendManga <mailRecipient> "maxime.deboffle@exapceo.com" .
ex:SendManga ex:contains ex:Zip .
