
@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:Hermann_Wein a foaf:Person 
    ; foaf:name "Hermann Wein"
    ; owl:sameAs dbr:Hermann_Wein
    ; dbo:birthDate "1912-05-20"^^xsd:date
    ; dbo:deathDate "1981-11-03"^^xsd:date
    ; ex:places dbr:Humboldt_University_of_Berlin
    ; ex:membership ex:nsdap, ex:nsdap_in_1937
    ; owl:sameAs <https://explore.gnd.network/gnd/118630210>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q59532121>
    ; dbo:religion dbr:Catholic_Church
    ; bio:event _:promotion, _:habilitation, _:dozent, _:militaryService, _:postwarPosition
    ; dbo:influencedBy dbr:Nicolai_Hartmann
    ; dbo:author _:untersuchungen .

_:promotion a bio:Graduation 
    ; bio:date "1936"^^xsd:gYear 
    ; bio:place dbr:Berlin 
    ; rdfs:label "Promotion in Philosophie an der Universität Berlin." .

_:habilitation a bio:Habilitation 
    ; bio:date "1942-08-03"^^xsd:date 
    ; rdfs:label "Habilitation am 3. August 1942." .

_:dozent a bio:Position 
    ; bio:date "1943-03-19"^^xsd:date 
    ; rdfs:label "Dozent der Philosophie seit dem 19. März 1943." .

_:militaryService a bio:MilitaryService 
    ; bio:date "1943"^^xsd:gYear 
    ; rdfs:label "Militärdienst als Funker, uk-gestellt im Januar 1943." .

_:postwarPosition a bio:Position 
    ; bio:date "1947"^^xsd:gYear 
    ; rdfs:label "Dozent ab 1947, apl. Professor in Göttingen seit 1950." .

_:untersuchungen a bibo:Book 
    ; dcterms:title "Untersuchungen über das Problembewußtsein"
    ; dcterms:creator ex:Hermann_Wein, dbr:Hermann_Wein 
    ; dcterms:issued "1937"^^xsd:gYear 
    ; dcterms:language "de" 
    ; dcterms:subject "Philosophy", "Problembewusstsein" .
