# $Id: hl7-sample.rq,v 1.3 2008/03/05 03:14:36 eric Exp $ # Henry Levin's BP history. # Runs on hl7-sample.ttl . PREFIX foaf: PREFIX galen: PREFIX core: PREFIX exOwl: PREFIX owl: PREFIX dc: PREFIX cpr: PREFIX r: SELECT ?date ?systolic ?diastolic ?location { [ exOwl:about [ a galen:Patient ; foaf:family_name "Levin" ; foaf:firstName "Henry" ] ; owl:OBO_REL_has_proper_part [ cpr:description-of [ dc:date ?date ; galen:hasSpecificLocation ?location ; owl:OBO_REL_has_improper_part [ exOwl:realizes [ r:value ?systolic ; core:prefLabel "Systolic BP" ] ] ; owl:OBO_REL_has_improper_part [ exOwl:realizes [ r:value ?diastolic ; core:prefLabel "Diastolic BP" ] ] ; core:prefLabel "Cuff blood pressure" ] ] ; ] . }