INS-Projekt/data/abox.ttl

53 lines
1.8 KiB
Turtle
Raw Normal View History

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 .
2018-01-02 14:36:27 +01:00
:Wii :releaseYear 2006 .
:Wii :madeBy :Nintendo .
:Wii :predecessorOfConsole :Wii_u .
2017-11-20 18:14:28 +01:00
:Sony a foaf:Organization.
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
:releaseYear 2012 ;
2017-11-20 19:58:45 +01:00
:madeBy :Nintendo ;
2018-01-02 14:36:27 +01:00
:predecessorOfConsole :Switch .
2017-11-20 18:14:28 +01:00
2018-01-02 13:48:40 +01:00
:Switch a :PortableGameConsole ;
:madeBy :Nintendo ;
:releaseYear 2017 ;
rev:hasReview :SwitchReviewByJPT;
:hasPrice 329 .
2018-01-02 13:48:40 +01:00
# Should create an conflict
:Playstation4 a :NintendoConsole;
:madeBy :Sony.
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 14:39:29 +01:00
:SwitchReviewByJPT a rev:Review ;
rev:reviewer :JPT ;
rev:text "Yet another gaming console. I lost a tetris game once. Meh."^^xsd:string .
2017-11-20 18:14:28 +01:00