| 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-002: occupancy/size thresholds per regime and jurisdiction with their effect. |
| 8 | SELECT ?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 |