« 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>. | ||
ex:Image <AttachementSize> 5000. | ex:Image <AttachementSize> 5000. | ||
</rdf> | |||
<rdf> | |||
ex:CV rdf:type <Attachement>. | ex:CV rdf:type <Attachement>. | ||
ex:CV <AttachementSize> 500. | ex:CV <AttachementSize> 500. | ||
</rdf> | |||
<rdf> | |||
ex:LM rdf:type <Attachement>. | ex:LM rdf:type <Attachement>. | ||
ex:LM <AttachementSize> 500. | ex:LM <AttachementSize> 500. | ||
</rdf> | |||
<rdf> | |||
ex:Zip rdf:type <Attachement>. | ex:Zip rdf:type <Attachement>. | ||
ex:Zip <AttachementSize> 1000. | ex:Zip <AttachementSize> 1000. | ||
</rdf> | |||
<rdf> | |||
ex:Newsletter rdf:type <Mail>. | ex:Newsletter rdf:type <Mail>. | ||
ex:Newsletter <mailRecipient> "maxime.deboffle@gmail.com". | ex:Newsletter <mailRecipient> "maxime.deboffle@gmail.com". | ||
ex:Newsletter <mailSize> "50"^^xsd:double. | ex:Newsletter <mailSize> "50"^^xsd:double. | ||
ex:Newsletter ex:contains ex:Image. | ex:Newsletter ex:contains ex:Image. | ||
</rdf> | |||
<rdf> | |||
ex:Candidature rdf:type <Mail>. | ex:Candidature rdf:type <Mail>. | ||
ex:Candidature <mailSize> "100"^^xsd:double. | ex:Candidature <mailSize> "100"^^xsd:double. | ||
Ligne 94 : | Ligne 104 : | ||
ex:Candidature ex:contains ex:CV. | ex:Candidature ex:contains ex:CV. | ||
ex:Candidature ex:contains ex:LM. | ex:Candidature ex:contains ex:LM. | ||
</rdf> | |||
<rdf> | |||
ex:SendManga rdf:type <Mail>. | ex:SendManga rdf:type <Mail>. | ||
ex:SendManga <mailSize> "100"^^xsd:double. | ex:SendManga <mailSize> "100"^^xsd:double. | ||
ex:SendManga <mailRecipient> "maxime.deboffle@exapceo.com". | ex:SendManga <mailRecipient> "maxime.deboffle@exapceo.com". | ||
ex:SendManga ex:contains ex:Zip. | ex:SendManga ex:contains ex:Zip. | ||
</rdf> | </rdf> | ||
Version du 4 décembre 2020 à 18:48
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>.
ex:Image <AttachementSize> 5000.
ex:CV rdf:type <Attachement>.
ex:CV <AttachementSize> 500.
ex:LM rdf:type <Attachement>.
ex:LM <AttachementSize> 500.
ex:Zip rdf:type <Attachement>.
ex:Zip <AttachementSize> 1000.
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.
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 |
21:17:39 21/11/2024 -- Actualiser -- Durée de la requête :0.024s -- CSV |
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#Class |
21:17:39 21/11/2024 -- Actualiser -- Durée de la requête :0.016s -- CSV |
Vérification que les données sont chargées :
s |
---|
http://www.example.org/CV |
http://www.example.org/Image |
http://www.example.org/LM |
http://www.example.org/Zip |
21:17:39 21/11/2024 -- Actualiser -- Durée de la requête :0.015s -- CSV |
Démonstration
Des copies d'écran