
@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:Ludwig_Baur a foaf:Person 
    ; foaf:name "Ludwig Baur"
    ; owl:sameAs dbr:Ludwig_Baur
    ; dbo:birthDate "1871-04-09"^^xsd:date
    ; dbo:deathDate "1943-01-14"^^xsd:date
    ; ex:places dbr:University_of_Wrocław
    ; owl:sameAs <https://explore.gnd.network/gnd/116093986>
    ; owl:sameAs <https://www.wikidata.org/wiki/Q23062922>
    ; dbo:religion dbr:Catholic_Church
    ; dbo:academicPosition "Ordentlicher Professor für Philosophie in Breslau"
    ; bio:event _:militaryService, _:politicalActivity, _:retirement, _:publications .

_:militaryService a bio:MilitaryService 
    ; bio:date "1914"^^xsd:gYear 
    ; bio:position "Feldkaplan"
    ; rdfs:label "Im Ersten Weltkrieg diente Ludwig Baur als Feldkaplan und wurde ausgezeichnet." .

_:politicalActivity a bio:PoliticalActivity 
    ; bio:date "1919-1925"^^xsd:gYear 
    ; bio:position "Mitglied der Zentrumspartei"
    ; rdfs:label "Von 1919 bis 1925 war Baur für die Zentrumspartei im Württembergischen Landtag tätig." .

_:retirement a bio:Retirement 
    ; bio:date "1936"^^xsd:gYear 
    ; rdfs:label "Ludwig Baur wurde 1936 emeritiert." .

_:publications a bio:Publication 
    ; bio:date "1937"^^xsd:gYear 
    ; rdfs:label "Veröffentlichung eines Buches über Nikolaus von Kues." .
    
_:publications2 a bio:Publication 
    ; bio:date "1940"^^xsd:gYear 
    ; rdfs:label "Veröffentlichung eines weiteren Buches über Nikolaus von Kues." .
