Minor changes

This commit is contained in:
Maschell
2018-01-02 13:48:40 +01:00
parent 18da088ea1
commit 31b3a144fc
3 changed files with 49 additions and 34 deletions
+14 -10
View File
@@ -5,38 +5,42 @@
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rev: <http://purl.org/stuff/rev#> .
:Kimishima rdf:type foaf:Person ;
:Kimishima a foaf:Person ;
foaf:familyName "Kimishima"^^xsd:string ;
foaf:givenName "Tatsumi"^^xsd:string .
:Wii rdf:type :GameConsole .
:Wii a :GameConsole .
:Wii :releaseYear 2006 .
:Wii :madeBy :Nintendo .
:Nintendo rdf:type foaf:Organization ;
:Nintendo a foaf:Organization ;
:ceo :Kimishima ;
:foundingYear 1889 ;
foaf:name "Nintendo Co., Ltd."^^xsd:string .
:Wii_u rdf:type :GameConsole ;
:Wii_u a :GameConsole ;
:internetEnabled true ;
:consoleName "Wii U"^^xsd:string ;
:numOfSupportedControllers 8 ;
:numOfSupportedControllers 8;
:predecessorOfConsole :Wii ;
:releaseYear 2012 ;
:madeBy :Nintendo ;
:successorOfConsole :Switch .
:Switch rdf:type :PortableGameConsole .
:Switch :madeBy :Nintendo .
:Switch rev:hasReview :SwitchReviewByJPT .
:Switch a :PortableGameConsole ;
:madeBy :Nintendo ;
:releaseYear 2017 ;
rev:hasReview :SwitchReviewByJPT .
:Playstation4 a :GameConsole .
:JPT rdf:type foaf:Person ;
foaf:name "Jan Philipp Timme"^^xsd:string .
:Maschell rdf:type foaf:Person ;
:Maschell a foaf:Person ;
foaf:name "Marcel Felix"^^xsd:string .
:SwitchReview rdf:type rev:Review ;
:SwitchReview a rev:Review ;
rev:reviewer :JPT ;
rev:text "Yet another gaming console. I lost a tetris game once. Meh."^^xsd:string .
+10 -9
View File
@@ -62,27 +62,28 @@
:successorOfConsole rdfs:subPropertyOf :relatedToConsole .
# rdfs:subClassOf
:PortableGameConsole rdf:type rdfs:Class .
:GameConsole rdf:type rdfs:Class .
:PortableGameConsole a rdfs:Class .
:GameConsole a rdfs:Class .
:PortableGameConsole rdfs:subClassOf :GameConsole .
:HomeConsole owl:equivalentClass [
rdf:type owl:Class ;
owl:intersectionOf (
:GameConsole [owl:complementOf :PortableGameConsole]
:GameConsole [
owl:complementOf :PortableGameConsole
]
)
] .
:NintendoConsole owl:equivalentClass [
rdf:type owl:Restriction ;
owl:onProperty :madeBy ;
owl:someValuesFrom :Nintendo
owl:hasValue :Nintendo
] .
:PartyConsole rdf:equivalentClass [
:PartyConsole owl:equivalentClass [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty :numOfSupportedControllers ;
owl:onClass :GameConsole
] .
owl:onClass :GameConsole
] .