05. Sitzung (RDFS)

Folien
Beispiellösung:
Graph
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix stp:<http://hki.uni-koeln.de/st2019/person/>.

<http://hki.uni-koeln.de/st2019/person/christoph.stollwerk>
	a foaf:Person;
	foaf:name "Christoph Stollwerk" ;
	foaf:givenName "Christoph" ;
	foaf:family_name "Stollwerk" ;
	foaf:nick "chrix" ;
	foaf:mbox <mailto:c.stollwerk@uni-koeln.de> ;
	foaf:homepage <http://www.christoph-stollwerk.de> ;
	foaf:workplaceHomepage <http://hki.uni-koeln.org> ;
	foaf:depiction <http://www.chrix.de/meinBild.jpg> ;
	foaf:interest <http://www.youtube.com> ;
	foaf:member <http://hki.uni-koeln.de/st2019/group/kurs1> ,  <http://hki.uni-koeln.de/st2019/group/kurs2>;
	foaf:knows stp:max.mustermann , stp:rasmus.krempel , stp:maria.mueller .

<http://www.youtube.com>
	dc:title "Youtube - Broadcast Yourself" .
	
<http://hki.uni-koeln.de/st2019/person/max.mustermann>
	a foaf:Person;
	foaf:member <http://hki.uni-koeln.de/st2019/group/kurs1> .
	
<http://hki.uni-koeln.de/st2019/person/rasmus.krempel>
	a foaf:Person;
	foaf:member <http://hki.uni-koeln.de/st2019/group/kurs2> .
	
<http://hki.uni-koeln.de/st2019/person/maria.mueller>
	a foaf:Person;
	foaf:member <http://hki.uni-koeln.de/st2019/group/kurs2> .