migrants/constructs_step06/010a-occupations-passthrough.rq
Daniel Hernandez c79ae45859 Add Step 6: map to Theatre Migrants ontology (tm: namespace)
SPARQL CONSTRUCT queries transform graph-05 into graph-06 using the tm:
vocabulary. Persons keep schema:Person properties, works become
org:Membership, professions become schema:Occupation, enumerations
become skos:Concept with tm: subtypes. Split 010-occupations into two
query files (passthrough + retype). Includes step-06 binary, Rakefile
tasks, and example data for Irene Abendroth.
2026-03-01 12:20:40 +01:00

12 lines
253 B
SPARQL

# Construct occupation instances: pass through existing schema:Occupation.
PREFIX schema: <https://schema.org/>
CONSTRUCT {
?s a schema:Occupation .
?s schema:name ?name .
}
WHERE {
?s a schema:Occupation .
OPTIONAL { ?s schema:name ?name }
}