
@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:Wolfgang_Köhler a foaf:Person 
    ; foaf:name "Wolfgang Köhler"
    ; owl:sameAs dbr:Wolfgang_Köhler
    ; dbo:birthDate "1887-01-21"^^xsd:date
    ; dbo:birthPlace dbr:Tallinn
    ; dbo:deathDate "1967-06-11"^^xsd:date
    ; dbo:deathPlace <http://dbpedia.org/resource/Enfield,_New_Hampshire>
    ; dbo:religion dbr:Unknown
    ; ex:places dbr:Humboldt_University_of_Berlin
    ; ex:repercussion ex:resignation
    ; ex:repercussionReasons ex:political
    ; ex:academicPosition "Professor der Philosophie und Direktor des Psychologischen Instituts in Berlin"
    ; owl:sameAs <https://explore.gnd.network/gnd/118843397>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q213672>
    ; bio:event _:guestProfessorHarvard, _:professorshipSwarthmore, _:critiqueNazism, _:foundingGestaltPsychology .

_:guestProfessorHarvard a bio:Position 
    ; ex:eventNote ex:migration
    ; bio:date "1934"^^xsd:gYear 
    ; bio:place dbr:Harvard_University
    ; rdfs:label "Bis 1935 Gastprofessor an der Harvard University." .

_:professorshipSwarthmore a bio:Position 
    ; bio:date "1935"^^xsd:gYear 
    ; bio:place dbr:Swarthmore_College
    ; rdfs:label "Bis 1946 Professor für Psychologie am Swarthmore College in Pennsylvania (USA)." .

_:critiqueNazism a bio:Publication 
    ; bio:date "1933-04-28"^^xsd:date 
    ; rdfs:label "Kritik an der nazistischen 'Säuberung' der Hochschulen in einem Zeitungsartikel (Gespräche in Deutschland, DAZ)." .

_:foundingGestaltPsychology a bio:Event 
    ; bio:date "1920"^^xsd:gYear 
    ; rdfs:label "Begründung der Berliner Schule der Gestaltpsychologie zusammen mit Kurt Lewin, Max Wertheimer und anderen." .

