pboProperty Ontology
sparql13 lines739 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-013: services of a property-management business with fee model, workflow and KPI.
8SELECT ?business ?service ?feeModel ?workflow ?kpi WHERE {
9 ?b a pbo:PropertyManagementBusiness ; rdfs:label ?business ; pbo:providesService ?s .
10 ?s rdfs:label ?service ; pbo:hasFeeModel ?fm . ?fm skos:prefLabel ?feeModel .
11 OPTIONAL { ?s pbo:supportedByWorkflow ?w . ?w rdfs:label ?workflow }
12 OPTIONAL { ?s pbo:measuredBy ?k . ?k skos:prefLabel ?kpi }
13} ORDER BY ?service ?feeModel