
@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:Kurt_Leese a foaf:Person 
    ; foaf:name "Kurt Leese"
    ; owl:sameAs dbr:Kurt_Leese
    ; dbo:birthDate "1887-07-06"^^xsd:date
    ; dbo:deathDate "1965-01-07"^^xsd:
    ; ex:places dbr:University_of_Hamburg
    ; ex:membership ex:nslb
    ; ex:repercussion ex:dismissal
    ; ex:repercussionReasons ex:political
    ; owl:sameAs <https://explore.gnd.network/gnd/116855266>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q1559954>
    ; dbo:religion dbr:Protestantism
    ; dbo:academicPosition "Privatdozent für Philosophie in Hamburg"
    ; bio:event _:militaryService, _:academicAppointment, _:dismissal, _:publications .

_:militaryService a bio:MilitaryService 
    ; bio:date "1914"^^xsd:gYear 
    ; rdfs:label "Frontsoldat im Ersten Weltkrieg." .

_:academicAppointment a bio:Appointment 
    ; bio:date "1935-01-30"^^xsd:date 
    ; rdfs:label "Wurde am 30. Januar 1935 zum außerordentlichen Professor ernannt." .

_:dismissal a bio:Dismissal 
    ; bio:date "1940-04-05"^^xsd:date 
    ; rdfs:label "Am 5. April 1940 aus dem Universitätsdienst entlassen." .

_:publications a bio:Publication 
    ; bio:date "1934"^^xsd:gYear 
    ; rdfs:label "Veröffentlichungen: 'Rasse, Religion, Ethos' und 'Die Mutter als Religionssymbol' (beide 1934), 'Die Religion des protestantischen Menschen' (1938)." .

_:rasseReligionEthos a bibo:Book
    ; dcterms:title "Rasse, Religion, Ethos" 
    ; dcterms:creator ex:Kurt_Leese 
    ; dcterms:issued "1934"^^xsd:gYear 
    ; dcterms:language "de" 
    ; dcterms:subject "Religion", "Ethics" .

_:dieMutterAlsReligionssymbol a bibo:Book
    ; dcterms:title "Die Mutter als Religionssymbol" 
    ; dcterms:creator ex:Kurt_Leese 
    ; dcterms:issued "1934"^^xsd:gYear 
    ; dcterms:language "de" 
    ; dcterms:subject "Religion", "Symbolism" .

_:dieReligionDesProtestantischenMenschen a bibo:Book
    ; dcterms:title "Die Religion des protestantischen Menschen" 
    ; dcterms:creator ex:Kurt_Leese 
    ; dcterms:issued "1938"^^xsd:gYear 
    ; dcterms:language "de" 
    ; dcterms:subject "Religion", "Protestantism" .
