Utilisateur:Chricris/ExerciceESGI 2020 10 09

De ESCR
< Utilisateur:Chricris
Révision datée du 30 octobre 2020 à 07:58 par Chricris (discussion | contributions) (Page créée avec « BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#> PREFIX ex: <http://www.example.org/> PREFIX rdf: <http://www.w3.org/1999/02/22… »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Aller à la navigation Aller à la recherche

BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>

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#>

<Movie> rdf:type rdfs:Class .

<MovieStaff> rdf:type rdfs:Class .

<Actor> rdf:type rdfs:Class . <Actor> rdfs:subClassOf <MovieStaff>.

<participatesIn> rdf:type rdf:Property .

<starsIn> rdf:type rdf:Property . <starsIn> rdfs:subPropertyOf <participatesIn> .

<starsIn> rdfs:domain <Actor>. <starsIn> rdfs:range <Movie>.

ex:bradPitt rdf:type <Actor>. ex:bradPitt ex:starsIn ex:worldWarZ .