https://cacontology.projectvic.org/partnerships/shapes#TechnologyCooperationCompositionShape
Validates gUFO part-whole relationships for technology cooperation composition.
Instances of cacontology-partnerships:TechnologyCooperation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-partnerships-shapes:TechnologyCooperationCompositionShape a sh:NodeShape ;
rdfs:label "Technology Cooperation Composition Shape"@en ;
rdfs:comment "Validates gUFO part-whole relationships for technology cooperation composition."@en ;
sh:sparql [ sh:message "Technology cooperation must include both technical and operational components (gUFO part-whole constraint)."@en ;
sh:select """
SELECT $this
WHERE {
$this rdf:type cacontology-partnerships:TechnologyCooperation .
FILTER NOT EXISTS {
{ ?partnership cacontology-partnerships:coordinatedThrough $this } UNION
{ ?framework cacontology-partnerships:enablesSharing $this }
}
}
""" ] ;
sh:targetClass cacontology-partnerships:TechnologyCooperation .