pboProperty Ontology
sparql14 lines870 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-002: occupancy/size thresholds per regime and jurisdiction with their effect.
8SELECT ?regime ?jurisdiction ?thresholdKind ?comparator ?value ?upper ?unit ?effect WHERE {
9 ?r a pbo:RegulatoryRegime ; rdfs:label ?regime ; pbo:appliesIn ?j ; pbo:hasThreshold ?t .
10 ?j rdfs:label ?jurisdiction .
11 ?t pbo:thresholdKind ?k ; pbo:thresholdComparator ?comparator ; pbo:thresholdValue ?value ; pbo:thresholdUnit ?unit ; pbo:occupancyThresholdEffect ?e .
12 OPTIONAL { ?t pbo:thresholdUpperValue ?upper }
13 ?k skos:prefLabel ?thresholdKind . ?e skos:prefLabel ?effect .
14} ORDER BY ?jurisdiction ?regime ?value