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#> .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Kimishima a foaf:Person ;
|
2017-11-20 18:14:28 +01:00
|
|
|
foaf:familyName "Kimishima"^^xsd:string ;
|
|
|
|
foaf:givenName "Tatsumi"^^xsd:string .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Wii a :GameConsole .
|
|
|
|
:Wii :releaseYear 2006 .
|
2017-11-20 19:58:45 +01:00
|
|
|
:Wii :madeBy :Nintendo .
|
2017-11-20 18:14:28 +01:00
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Nintendo a foaf:Organization ;
|
2017-11-20 18:14:28 +01:00
|
|
|
:ceo :Kimishima ;
|
|
|
|
:foundingYear 1889 ;
|
|
|
|
foaf:name "Nintendo Co., Ltd."^^xsd:string .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Wii_u a :GameConsole ;
|
2017-11-20 18:14:28 +01:00
|
|
|
:internetEnabled true ;
|
|
|
|
:consoleName "Wii U"^^xsd:string ;
|
2018-01-02 13:48:40 +01:00
|
|
|
:numOfSupportedControllers 8;
|
2017-11-20 18:14:28 +01:00
|
|
|
:predecessorOfConsole :Wii ;
|
|
|
|
:releaseYear 2012 ;
|
2017-11-20 19:58:45 +01:00
|
|
|
:madeBy :Nintendo ;
|
2017-11-20 18:14:28 +01:00
|
|
|
:successorOfConsole :Switch .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Switch a :PortableGameConsole ;
|
|
|
|
:madeBy :Nintendo ;
|
|
|
|
:releaseYear 2017 ;
|
|
|
|
rev:hasReview :SwitchReviewByJPT .
|
|
|
|
|
|
|
|
:Playstation4 a :GameConsole .
|
2017-11-20 18:14:28 +01:00
|
|
|
|
|
|
|
:JPT rdf:type foaf:Person ;
|
|
|
|
foaf:name "Jan Philipp Timme"^^xsd:string .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:Maschell a foaf:Person ;
|
2017-11-20 18:14:28 +01:00
|
|
|
foaf:name "Marcel Felix"^^xsd:string .
|
|
|
|
|
2018-01-02 13:48:40 +01:00
|
|
|
:SwitchReview a rev:Review ;
|
2017-11-20 18:14:28 +01:00
|
|
|
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 .
|