Ontology Version: 2.2.0

cacontology-partnerships-shapes:TechnologyMaturityImplementationRule leaf node


URI

https://cacontology.projectvic.org/partnerships/shapes#TechnologyMaturityImplementationRule

Label

Technology Maturity Implementation Rule

Description

Advanced gUFO business rule: Mature technology should have fast implementation and high reliability.

Shape Properties

Instances of cacontology-partnerships:TechnologyCooperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@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:TechnologyMaturityImplementationRule a sh:NodeShape ;
    rdfs:label "Technology Maturity Implementation Rule"@en ;
    rdfs:comment "Advanced gUFO business rule: Mature technology should have fast implementation and high reliability."@en ;
    sh:sparql [ sh:message "Mature technology cooperation must have fast implementation speed and high reliability (gUFO business rule)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-partnerships:technologyMaturity "mature" .
                {
                    FILTER NOT EXISTS {
                        $this cacontology-partnerships:hasImplementationSpeed ?speed .
                        FILTER (?speed IN ("fast", "rapid", "immediate"))
                    }
                } UNION {
                    FILTER NOT EXISTS {
                        $this cacontology-partnerships:hasTechnicalReliability ?reliability .
                        FILTER (?reliability >= 0.8)
                    }
                }
            }
        """ ] ;
    sh:targetClass cacontology-partnerships:TechnologyCooperation .