pboProperty Ontology
sparql11 lines578 B
RawDownload
1PREFIX pbo: <https://ontology.property.local/pbo#>
2PREFIX ex: <https://ontology.property.local/pbo/example#>
3PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
4PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
5PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
6
7# CQ-010: outgoings allocation by lease type.
8SELECT ?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