| 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-001: authorisations required by operating model and jurisdiction, with legislation and regulator. |
| 8 | SELECT ?operatingModel ?jurisdiction ?authorisationType ?legislation ?regulator WHERE { |
| 9 | ?regime a pbo:RegulatoryRegime ; |
| 10 | pbo:appliesToOperatingModel ?om ; |
| 11 | pbo:appliesIn ?j ; |
| 12 | pbo:requiresAuthorisationType ?at ; |
| 13 | pbo:governedBy ?leg . |
| 14 | OPTIONAL { ?regime pbo:administeredBy ?reg . ?reg rdfs:label ?regulator } |
| 15 | ?om skos:prefLabel ?operatingModel . ?j rdfs:label ?jurisdiction . ?at skos:prefLabel ?authorisationType . ?leg rdfs:label ?legislation . |
| 16 | FILTER(?om = pbo:OperatingModel_MasterLease && ?j = ex:VIC) |
| 17 | } ORDER BY ?authorisationType |