
@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/> .

ex:Oswald_Weidenbach a foaf:Person 
    ; foaf:name "Oswald Weidenbach"
    ; dbo:birthDate "1876-03-04"^^xsd:date
    ; dbo:deathDate "1957-08-03"^^xsd:date # vermtl. falsch
    ; owl:sameAs <https://explore.gnd.network/gnd/1032456388>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q94920660>
    ; ex:places dbr:University_of_Giessen
    ; dbo:religion dbr:Protestantism
    ; bio:event _:academicPositionGießen, _:retirement, _:militaryService
    ; ex:areaOfInterest "Erkenntnistheorie, Kant, Deutscher Idealismus" .

_:academicPositionGießen a bio:Position 
    ; bio:date "1939-09-23"^^xsd:date 
    ; bio:place dbr:Gießen
    ; rdfs:label "Außerordentlicher Professor der Philosophie mit Lehrauftrag für Erkenntnistheorie in Gießen." .

_:retirement a bio:Retirement 
    ; bio:date "1941-12-06"^^xsd:date 
    ; rdfs:label "Entlassung nach § 61 DBG nach Erreichen der Altersgrenze und Ernennung zum Professor a.D." .

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