| 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-014: agency business models and how they source capabilities. |
| 8 | SELECT ?agencyModel (GROUP_CONCAT(?sourcing; separator=" | ") AS ?capabilitySourcing) WHERE { |
| 9 | ?m a pbo:AgencyBusinessModel ; skos:prefLabel ?agencyModel ; pbo:sourcesCapabilityVia ?cs . ?cs skos:prefLabel ?sourcing . |
| 10 | } GROUP BY ?agencyModel ORDER BY ?agencyModel |