
@prefix ex: <http://www.exiled-philosophers.org/> . 

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix dbr: <http://dbpedia.org/resource/> . 
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

@prefix bio: <http://purl.org/vocab/bio/0.1/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .

ex:Oskar_Kutzner a foaf:Person 
    ; foaf:name "Oskar Kutzner"
    ; owl:sameAs dbr:Oskar_Kutzner
    ; dbo:birthDate "1882-02-07"^^xsd:date
    ; dbo:deathDate "1951"^^xsd:gYear
    ; ex:places dbr:University_of_Bonn
    ; ex:membership ex:nsdap, ex:nsdap_in_1933, ex:nslb, ex:sa
    ; owl:sameAs <https://explore.gnd.network/gnd/116631767>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q55843129>
    ; dbo:religion dbr:Protestantism
    ; bio:event _:academicPosition, _:worldWarParticipation
    ; dbo:author _:leistungsprinzip, _:psychologieImDienste, _:allgemeineMethodik .

_:academicPosition a bio:AcademicPosition 
    ; bio:position "apl.Ass. am Psychologischen Institut und nebenberuflich außerordentlicher Professor der Philosophie mit Lehrauftrag für Pädagogik und Psychologie in Bonn"
    ; bio:date "1939-11-16"^^xsd:date 
    ; bio:institution dbr:Universität_Bonn 
    ; rdfs:label "Er wird am 16. November 1939 apl. Professor." .

_:worldWarParticipation a bio:Participation 
    ; bio:event dbr:World_War_I 
    ; rdfs:label "Teilnehmer am Ersten Weltkrieg." .

_:leistungsprinzip a bibo:Book
    ; dcterms:title "Das Leistungsprinzip in der privaten Lebensführung" 
    ; dcterms:creator ex:Oskar_Kutzner
    ; dcterms:issued "1939"^^xsd:gYear 
    ; dcterms:language "de" .

_:psychologieImDienste a bibo:Book 
    ; dcterms:title "Die Psychologie im Dienste der Auslese und der Menschenführung" 
    ; dcterms:creator ex:Oskar_Kutzner
    ; dcterms:issued "1942"^^xsd:gYear 
    ; dcterms:language "de" .

_:allgemeineMethodik a bibo:Book 
    ; dcterms:title "Allgemeine Methodik des Studiums" 
    ; dcterms:creator ex:Oskar_Kutzner 
    ; dcterms:issued "1951"^^xsd:gYear 
    ; dcterms:language "de" .
