« Utilisateur:Karima Rafes/Exemple de page projet pour ESGI » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
|||
Ligne 7 : | Ligne 7 : | ||
=== Schema === | === Schema === | ||
Diagramme de classes ou modèle RDF (comme vue en cours) | |||
=== Vocabulaires === | === Vocabulaires === | ||
==== Base ==== | |||
<rdf> | <rdf> | ||
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/ExerciceESGI_2020_10_09#> | |||
</rdf> | |||
==== Préfixes ==== | |||
<rdf> | |||
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#> | |||
</rdf> | |||
==== Classes ==== | |||
===== Movie ===== | |||
<rdf> | |||
<Movie> rdf:type rdfs:Class . | |||
</rdf> | |||
===== MovieStaff ===== | |||
<rdf> | |||
<MovieStaff> rdf:type rdfs:Class . | |||
</rdf> | |||
===== Actor ===== | |||
<rdf> | |||
<Actor> rdf:type rdfs:Class . | |||
<Actor> rdfs:subClassOf <MovieStaff>. | |||
</rdf> | |||
==== Propriétés==== | |||
===== participatesIn ===== | |||
<rdf> | |||
<participatesIn> rdf:type rdf:Property . | |||
</rdf> | |||
===== participatesIn ===== | |||
<rdf> | |||
<starsIn> rdf:type rdf:Property . | |||
<starsIn> rdfs:subPropertyOf <participatesIn> . | |||
<starsIn> rdfs:domain ex:Actor. | |||
<starsIn> rdfs:range ex:Movie. | |||
</rdf> | </rdf> | ||
Ligne 18 : | Ligne 59 : | ||
<rdf> | <rdf> | ||
ex:bradPitt rdf:type ex:Actor. | |||
ex:bradPitt ex:starsIn ex:worldWarZ . | |||
Ligne 23 : | Ligne 66 : | ||
=== Requêtes === | === Requêtes === | ||
== Démonstration == | == Démonstration == | ||
Des copies d'écran | Des copies d'écran |
Version du 30 octobre 2020 à 06:46
Introduction
Description
Définition de votre graphe de connaissances
Schema
Diagramme de classes ou modèle RDF (comme vue en cours)
Vocabulaires
Base
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/ExerciceESGI_2020_10_09#>
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#>
Classes
Movie
<Movie> rdf:type rdfs:Class .
MovieStaff
<MovieStaff> rdf:type rdfs:Class .
Actor
<Actor> rdf:type rdfs:Class .
<Actor> rdfs:subClassOf <MovieStaff>.
Propriétés
participatesIn
<participatesIn> rdf:type rdf:Property .
participatesIn
<starsIn> rdf:type rdf:Property .
<starsIn> rdfs:subPropertyOf <participatesIn> .
<starsIn> rdfs:domain ex:Actor.
<starsIn> rdfs:range ex:Movie.
Exemple d'un jeu de données
ex:bradPitt rdf:type ex:Actor.
ex:bradPitt ex:starsIn ex:worldWarZ .
Requêtes
Démonstration
Des copies d'écran