| 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-008: recommended sections per business-planning artefact and source. |
| 8 | SELECT ?artefactType ?artefact ?section ?source WHERE { |
| 9 | ?doc a ?t ; rdfs:label ?artefact ; pbo:recommendsSection ?sec ; pbo:assertedIn ?src . |
| 10 | ?t rdfs:subClassOf* pbo:InformationArtefact ; rdfs:label ?artefactType . ?sec skos:prefLabel ?section . ?src rdfs:label ?source . |
| 11 | FILTER(?t IN (pbo:BusinessPlan, pbo:InformationMemorandum, pbo:FeasibilityStudy)) |
| 12 | } ORDER BY ?artefact ?section |