« Mail sémantique » : différence entre les versions
Aller à la navigation
Aller à la recherche
Mail
Ligne 115 : | Ligne 115 : | ||
SELECT * | SELECT * | ||
WHERE { | WHERE { | ||
< | <Attachement> ?p ?v . | ||
} | } | ||
}} | }} | ||
Ligne 123 : | Ligne 123 : | ||
SELECT * | SELECT * | ||
WHERE { | WHERE { | ||
< | <contains> ?p ?v . | ||
} | } | ||
}} | }} | ||
Ligne 149 : | Ligne 133 : | ||
SELECT * | SELECT * | ||
WHERE { | WHERE { | ||
ex: | ex:Newsletter ?p ?v . | ||
} | } | ||
}} | }} | ||
Ligne 159 : | Ligne 143 : | ||
SELECT * | SELECT * | ||
WHERE { | WHERE { | ||
ex: | ex:Zip ?p ?v . | ||
} | } | ||
}} | }} |
Version du 4 décembre 2020 à 18:02
Introduction
Description
Définition de votre graphe de connaissances
Schema
Diagramme de classes ou modèle RDF (comme vue en cours)
Vocabulaire
Base
BASE <https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#>
Préfixes
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#>
Classes
<Mail> rdf:type rdfs:class.
Pièce jointe
<Attachement> rdf:type rdfs:Class.
Propriétés
contains
<contains> rdf:type rdf:Property;
rdfs:domain <Mail>;
rdfs:range <Attachement>.
Permet d'associer une ou plusieurs pièces jointes à un mail
mailRecipient
<mailRecipient> rdf:type rdf:Property;
rdfs:domain <Mail>.
Permet d'assigner un destinataire à un mail.
mailSize
<mailSize> rdf:type rdf:Property;
rdf:domain <Mail>.
Permet d'assigner une taille à un mail (en Ko).
AttachementSize
<AttachementSize> rdf:type rdf:Property;
rdf:domain <Attachement>.
Permet d'assigner une taille à une pièce jointe (en Ko).
Exemple d'un jeu de données
ex:Image rdf:type <Attachement>;
<AttachementSize> 5000.
ex:CV rdf:type <Attachement>;
<AttachementSize> 500.
ex:LM rdf:type <Attachement>;
<AttachementSize> 500.
ex:Zip rdf:type <Attachement>;
<AttachementSize> 1000.
ex:Newsletter rdf:type <Mail>;
<mailRecipient> "maxime.deboffle@gmail.com";
<mailSize> "50"^^xsd:double;
ex:contains ex:Image.
ex:Candidature rdf:type <Mail>;
<mailSize> "100"^^xsd:double;
<mailRecipient> "contact@exapceo.com";
ex:contains ex:CV;
ex:contains ex:LM.
ex:SendManga rdf:type <Mail>;
<mailSize> "100"^^xsd:double;
<mailRecipient> "maxime.deboffle@exapceo.com";
ex:contains ex:CV;
ex:contains ex:LM.
Requêtes
Vérification que le vocabulaire est bien chargé :
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#class |
20:20:08 21/11/2024 -- Actualiser -- Durée de la requête :0.019s -- CSV |
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#Class |
20:20:08 21/11/2024 -- Actualiser -- Durée de la requête :0.017s -- CSV |
Vérification que les données sont chargées :
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#Mail |
http://www.example.org/contains | http://www.example.org/Image |
https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#mailRecipient | maxime.deboffle@gmail.com |
https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#mailSize | 50 |
20:20:08 21/11/2024 -- Actualiser -- Durée de la requête :0.021s -- CSV |
Check mails
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#Attachement |
https://data.escr.fr/wiki/Utilisateur:Mdeboffle/projet#AttachementSize | 10000 |
20:20:08 21/11/2024 -- Actualiser -- Durée de la requête :0.025s -- CSV |
Démonstration
Des copies d'écran