53 lines
1.8 KiB
Turtle
53 lines
1.8 KiB
Turtle
@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 a foaf:Person ;
|
|
foaf:familyName "Kimishima"^^xsd:string ;
|
|
foaf:givenName "Tatsumi"^^xsd:string .
|
|
|
|
:Wii a :GameConsole .
|
|
:Wii :releaseYear 2006 .
|
|
:Wii :madeBy :Nintendo .
|
|
:Wii :predecessorOfConsole :Wii_u .
|
|
|
|
:Sony a foaf:Organization.
|
|
|
|
:Nintendo a foaf:Organization ;
|
|
:ceo :Kimishima ;
|
|
:foundingYear 1889 ;
|
|
foaf:name "Nintendo Co., Ltd."^^xsd:string .
|
|
|
|
:Wii_u a :GameConsole ;
|
|
:internetEnabled true ;
|
|
:consoleName "Wii U"^^xsd:string ;
|
|
:numOfSupportedControllers 8;
|
|
:releaseYear 2012 ;
|
|
:madeBy :Nintendo ;
|
|
:predecessorOfConsole :Switch .
|
|
|
|
:Switch a :PortableGameConsole ;
|
|
:madeBy :Nintendo ;
|
|
:releaseYear 2017 ;
|
|
rev:hasReview :SwitchReviewByJPT;
|
|
:hasPrice 329 .
|
|
|
|
# Should create an conflict
|
|
:Playstation4 a :NintendoConsole;
|
|
:madeBy :Sony.
|
|
|
|
:JPT rdf:type foaf:Person ;
|
|
foaf:name "Jan Philipp Timme"^^xsd:string .
|
|
|
|
:Maschell a foaf:Person ;
|
|
foaf:name "Marcel Felix"^^xsd:string .
|
|
|
|
:SwitchReviewByJPT a rev:Review ;
|
|
rev:reviewer :JPT ;
|
|
rev:text "Yet another gaming console. I lost a tetris game once. Meh."^^xsd:string .
|
|
|
|
|