This commit is contained in:
2023-02-02 11:51:05 +01:00
parent ed8f1fb109
commit 5f45e953d5
14 changed files with 554 additions and 0 deletions

0
TD0/seance2/titanic.rdf Normal file
View File

28
TD0/seance2/titanic.ttl Normal file
View File

@@ -0,0 +1,28 @@
@prefix ex: <http://www.example.org/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
ex:Film rdf:type rdfs:class .
ex:Person rdf:type rdfs:class .
ex:Actor rdf:type rdfs:class .
ex:PrincipalActior rdf:type rdfs:class .
ex:Director rdf:type rdfs:class .
ex:CreaticeWork rdf:type rdfs:class .
ex:Actor rdfs:subClassOf ex:Person .
ex:PrincipalActor rdfs:subClassOf ex:Actor .
ex:hasRoleIn rdf:type rdf:Property .
ex:hasRoleIn rdfs:domain ex:Actor .
ex:hasRoleIn rdfs:domain ex:Director .
ex:hasRoleIn rdfs:range ex:Film .
ex:hasPrincipalRoleIn rdfs:subPropertyOf ex:hasRoleIn .
ex:starring a rdf:Property ;
rdfs:domain ex:Director;
rdfs:rand ex:Film .
ex:Titanic rdf:type ex:Film .
ex:Leonardo_DiCaprio rdf:type ex:Actor .
ex:Kate_Winslet rdf:type ex:Actor .