Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PREFIX crm: <http://erlangen-crm.org/current/>
- PREFIX fts: <http://www.ontotext.com/owlim/fts#>
- PREFIX bmo: <http://collection.britishmuseum.org/id/ontology/>
- PREFIX ecrm: <http://erlangen-crm.org/current/>
- PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
- PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
- SELECT DISTINCT ?object ?comment ?img ?placename1 ?begintime ?endtime
- {
- ?object bmo:PX_curatorial_comment ?comment .
- ?object bmo:PX_has_main_representation ?img .
- ?object ecrm:P12i_was_present_at ?find . #Find the title resource for an object
- ?find rdf:type bmo:EX_Discovery . #find the label attached to that title
- ?find ecrm:P7_took_place_at ?place1 .
- ?place1 skos:prefLabel ?placename1 .
- OPTIONAL { ?place1 skos:broader ?place2 .
- ?place2 skos:prefLabel ?placename2 } .
- OPTIONAL { ?place2 skos:broader ?place3 .
- ?place3 skos:prefLabel ?placename3 } .
- ?object ecrm:P108i_was_produced_by ?production .
- ?production ecrm:P9_consists_of ?prodpart .
- ?prodpart ecrm:P4_has_time-span ?timespan .
- ?timespan ecrm:P82a_begin_of_the_begin ?begintime .
- ?timespan ecrm:P82b_end_of_the_end ?endtime
- }
Advertisement
Add Comment
Please, Sign In to add comment