Initial import (data only)
This commit is contained in:
commit
415e8aabe0
|
@ -0,0 +1,40 @@
|
|||
@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 .
|
||||
|
||||
: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 ;
|
||||
:successorOfConsole :Switch .
|
||||
|
||||
:Switch rdf:type :PortableGameConsole .
|
||||
: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 .
|
||||
|
||||
:Switch :hasPrice "329,00€"^^:PriceEur .
|
|
@ -0,0 +1,38 @@
|
|||
Vokabularien:
|
||||
* FOAF
|
||||
** http://xmlns.com/foaf/spec/20140114.html
|
||||
* rev
|
||||
** http://purl.org/stuff/rev#
|
||||
|
||||
* Spielekonsolen
|
||||
** Name
|
||||
** Erscheinungsjahr
|
||||
** Anzahl unterstützter Controller (gleichzeitige Nutzung)
|
||||
** Portabel? (yes/no)
|
||||
** istInternetfähig?
|
||||
** hatNachfolger
|
||||
** hatVorgänger
|
||||
** verwendetSpeichermedium
|
||||
** TODO: wird von uns bewertet
|
||||
|
||||
* Konsolenspiel
|
||||
** Titel
|
||||
** Erscheinungsjahr
|
||||
** spielbarAufKonsole
|
||||
** TODO: wird von uns bewertet
|
||||
|
||||
* Spielehersteller (+foaf:Organization)
|
||||
** Name
|
||||
** Gründungsjahr
|
||||
** wirdGeleitetVonCEO
|
||||
|
||||
* CEO des Herstellers (foaf:Person)
|
||||
** Vorname
|
||||
** Nachname
|
||||
** Geburtsdatum?
|
||||
|
||||
* Speichermedium
|
||||
** Name/Bezeichnung
|
||||
** Kapazität (in Byte)
|
||||
|
||||
* CD, DVD, Cartridge, BluRay, ... (Subklassen von Speichermedium)
|
|
@ -0,0 +1,58 @@
|
|||
@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#> .
|
||||
|
||||
# Our own properties
|
||||
:ceo rdf:type rdf:Property ;
|
||||
rdfs:domain foaf:Organization ;
|
||||
rdfs:range foaf:Person .
|
||||
|
||||
:foundingYear rdf:type rdf:Property ;
|
||||
rdfs:domain foaf:Organization ;
|
||||
rdfs:range xsd:int .
|
||||
|
||||
:internetEnabled rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range xsd:boolean .
|
||||
|
||||
:consoleName rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range xsd:string .
|
||||
|
||||
:numOfSupportedControllers rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range xsd:string .
|
||||
|
||||
:predecessorOfConsole rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range :GameConsole .
|
||||
|
||||
:successorOfConsole rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range :GameConsole .
|
||||
|
||||
:relatedToConsole rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range :GameConsole .
|
||||
|
||||
:releaseYear rdf:type rdf:Property ;
|
||||
rdfs:domain :GameConsole ;
|
||||
rdfs:range xsd:int .
|
||||
|
||||
# rdfs:Datatype
|
||||
:PriceEur rdf:type rdfs:Datatype .
|
||||
:PriceEur rdfs:label "Preis in Euro"^^xsd:string .
|
||||
|
||||
# Anwendungsbeispiel: :Switch :hasPrice "329,00€"^^:PriceEur .
|
||||
|
||||
# rdfs:subPropertyOf
|
||||
:predecessorOfConsole rdfs:subPropertyOf :relatedToConsole .
|
||||
:successorOfConsole rdfs:subPropertyOf :relatedToConsole .
|
||||
|
||||
# rdfs:subClassOf
|
||||
:PortableGameConsole rdf:type rdfs:Class .
|
||||
:GameConsole rdf:type rdfs:Class .
|
||||
:PortableGameConsole rdfs:subClassOf :GameConsole .
|
Loading…
Reference in New Issue