| 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-010: outgoings allocation by lease type. |
| 8 | SELECT ?leaseType ?outgoing ?bearer WHERE { |
| 9 | ?lt a pbo:LeaseType ; skos:prefLabel ?leaseType ; pbo:allocatesOutgoing ?oa . |
| 10 | ?oa pbo:outgoingCategory ?oc ; pbo:borneByRole ?r . ?oc skos:prefLabel ?outgoing . ?r skos:prefLabel ?bearer . |
| 11 | } ORDER BY ?leaseType ?outgoing |