| 1 | PREFIX pbo: <https://ontology.property.local/pbo#> |
| 2 | PREFIX ex: <https://ontology.property.local/pbo/example#> |
| 3 | PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> |
| 4 | PREFIX skos: <http://www.w3.org/2004/02/skos/core#> |
| 5 | PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> |
| 6 | |
| 7 | # CQ-005: ownership structures and their sourced characteristics. |
| 8 | SELECT ?structure ?characteristic ?source WHERE { |
| 9 | ?st a pbo:OwnershipStructure ; skos:prefLabel ?structure ; pbo:hasCharacteristic ?c . |
| 10 | ?c pbo:characteristicNote ?characteristic ; pbo:assertedIn ?doc . ?doc rdfs:label ?source . |
| 11 | } ORDER BY ?structure |