« Mail sémantique » : différence entre les versions
Aller à la navigation
Aller à la recherche
Mail
Ligne 74 : | Ligne 74 : | ||
ex:Image rdf:type <Attachement>; | ex:Image rdf:type <Attachement>; | ||
<AttachementSize> 5000. | <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>; | ex:Newsletter rdf:type <Mail>; | ||
Ligne 79 : | Ligne 85 : | ||
<mailSize> "50"^^xsd:double; | <mailSize> "50"^^xsd:double; | ||
ex:contains ex:Image. | 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. | |||
</rdf> | </rdf> |
Version du 4 décembre 2020 à 18:00
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:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.029s -- CSV |
p | v |
---|---|
20:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.018s -- CSV |
p | v |
---|---|
20:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.015s -- CSV |
p | v |
---|---|
20:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.017s -- CSV |
p | v |
---|---|
20:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.015s -- CSV |
Vérification que les données sont chargées :
Check mails
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:49:29 21/11/2024 -- Actualiser -- Durée de la requête :0.024s -- CSV |
Démonstration
Des copies d'écran