
@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:Theodor_Steinbüchel a foaf:Person 
    ; foaf:name "Theodor Steinbüchel"
    ; owl:sameAs dbr:Theodor_Steinbüchel
    ; dbo:birthDate "1888-06-15"^^xsd:date
    ; dbo:deathDate "1949-02-19"^^xsd:date
    ; ex:places dbr:University_of_Giessen, dbr:University_of_Tübingen
    ; owl:sameAs <https://explore.gnd.network/gnd/118753150>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q92456>
    ; dbo:religion dbr:Catholic_Church
    ; dbo:influencedBy dbr:Hegel
    ; bio:event _:academicPositions, _:politicalAffiliation, _:publications, _:rectorship .

_:academicPositions a bio:Position 
    ; bio:title "außerordentlicher Professor der Philosophie" 
    ; bio:date "1935-11-01"^^xsd:date 
    ; bio:place dbr:Gießen .

_:academicPositions a bio:Position 
    ; bio:title "ordentlicher Professor der Theologie (mit Lehrauftrag für Moraltheologie)" 
    ; bio:date "1935-11-01"^^xsd:date 
    ; bio:place dbr:Munich .

_:academicPositions a bio:Position 
    ; bio:title "Vertr. Professor" 
    ; bio:date "1941-04-01"^^xsd:date 
    ; bio:place dbr:Tübingen .

_:politicalAffiliation a bio:PoliticalAffiliation 
    ; bio:party "Zentrumspartei" 
    ; bio:date "1933"^^xsd:gYear .

_:publications a bio:Publication 
    ; bio:title "Das Grundproblem der Hegelschen Philosophie" 
    ; dcterms:issued "1933"^^xsd:gYear .

_:publications a bio:Publication 
    ; bio:title "Christliches Mittelalter" 
    ; dcterms:issued "1935"^^xsd:gYear .

_:publications a bio:Publication 
    ; bio:title "Umbruch des Denkens" 
    ; dcterms:issued "1936"^^xsd:gYear .

_:publications a bio:Publication 
    ; bio:title "Philosophische Grundlegung der katholischen Sittenlehre" 
    ; dcterms:issued "1938-1951"^^xsd:gYear .

_:rectorship a bio:Position 
    ; bio:title "Rektor" 
    ; bio:date "Nach Kriegsende" 
    ; bio:place dbr:Tübingen .
