
@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:Ottmar_Dittrich a foaf:Person 
    ; foaf:name "Ottmar Dittrich"
    ; dbo:birthDate "1865-11-12"^^xsd:date
    ; dbo:deathDate "1951-10-16"^^xsd:date
    ; ex:places dbr:Leipzig_University
    ; owl:sameAs <https://explore.gnd.network/gnd/116145471>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q1699843>
    ; bio:event _:academicPositionLeipzig, _:retirement, _:confessionHitler
    ; dbo:religion dbr:Protestantism .

_:academicPositionLeipzig a bio:Position 
    ; bio:date "1933-04-01"^^xsd:date 
    ; rdfs:label "Außerordentlicher Professor für Philosophie in Leipzig." .

_:retirement a bio:Retirement 
    ; bio:date "1933-04-01"^^xsd:date 
    ; rdfs:label "Ottmar Dittrich wird emeritiert." .

_:confessionHitler a bio:Event 
    ; bio:date "1933-11"^^xsd:gYearMonth
    ; rdfs:label "Ottmar Dittrich gibt ein Bekenntnis zu Hitler ab." .
