2017-11-20 18:14:28 +01:00
|
|
|
@prefix : <http://example.com/ins_uebung/#> .
|
|
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
|
|
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
|
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
|
|
|
@prefix rev: <http://purl.org/stuff/rev#> .
|
|
|
|
|
|
|
|
:Kimishima rdf:type foaf:Person ;
|
|
|
|
foaf:familyName "Kimishima"^^xsd:string ;
|
|
|
|
foaf:givenName "Tatsumi"^^xsd:string .
|
|
|
|
|
|
|
|
:Wii rdf:type :GameConsole .
|
2017-11-20 19:58:45 +01:00
|
|
|
:Wii :madeBy :Nintendo .
|
2017-11-20 18:14:28 +01:00
|
|
|
|
|
|
|
:Nintendo rdf:type foaf:Organization ;
|
|
|
|
:ceo :Kimishima ;
|
|
|
|
:foundingYear 1889 ;
|
|
|
|
foaf:name "Nintendo Co., Ltd."^^xsd:string .
|
|
|
|
|
|
|
|
:Wii_u rdf:type :GameConsole ;
|
|
|
|
:internetEnabled true ;
|
|
|
|
:consoleName "Wii U"^^xsd:string ;
|
|
|
|
:numOfSupportedControllers 8 ;
|
|
|
|
:predecessorOfConsole :Wii ;
|
|
|
|
:releaseYear 2012 ;
|
2017-11-20 19:58:45 +01:00
|
|
|
:madeBy :Nintendo ;
|
2017-11-20 18:14:28 +01:00
|
|
|
:successorOfConsole :Switch .
|
|
|
|
|
|
|
|
:Switch rdf:type :PortableGameConsole .
|
2018-01-01 23:23:52 +01:00
|
|
|
:Switch :madeBy :Nintendo .
|
2017-11-20 18:14:28 +01:00
|
|
|
:Switch rev:hasReview :SwitchReviewByJPT .
|
|
|
|
|
|
|
|
:JPT rdf:type foaf:Person ;
|
|
|
|
foaf:name "Jan Philipp Timme"^^xsd:string .
|
|
|
|
|
|
|
|
:Maschell rdf:type foaf:Person ;
|
|
|
|
foaf:name "Marcel Felix"^^xsd:string .
|
|
|
|
|
|
|
|
:SwitchReview rdf:type rev:Review ;
|
|
|
|
rev:reviewer :JPT ;
|
|
|
|
rev:text "Yet another gaming console. I lost a tetris game once. Meh."^^xsd:string .
|
|
|
|
|
2018-01-02 00:55:37 +01:00
|
|
|
:Switch :hasPrice "329,00"^^:PriceEur .
|