pboProperty Ontology
sparql12 lines727 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-008: recommended sections per business-planning artefact and source.
8SELECT ?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