Ontology Version: 2.2.0

cacontology-infrastructure-shapes:AnalysisParticipationShape leaf node


URI

https://cacontology.projectvic.org/infrastructure/shapes#AnalysisParticipationShape

Label

Analysis Participation Shape

Description

Validates gUFO participation constraints for analysis operations.

Shape Properties

Instances of cacontology-infrastructure:InfrastructureAnalysis can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-infrastructure:InfrastructureAnalysis
cacontology-infrastructure:hasAnalysisAccuracy 1 xsd:double
cacontology-infrastructure:hasAnalysisDepth 1 xsd:string
cacontology-infrastructure:hasAnalysisTimeliness 1 xsd:string

Implementation

@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@prefix cacontology-infrastructure-shapes: <https://cacontology.projectvic.org/infrastructure/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-infrastructure-shapes:AnalysisParticipationShape a sh:NodeShape ;
    rdfs:label "Analysis Participation Shape"@en ;
    rdfs:comment "Validates gUFO participation constraints for analysis operations."@en ;
    sh:sparql [ sh:message "Analysis operations must involve analyst roles (gUFO participation constraint)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this rdf:type cacontology-infrastructure:InfrastructureAnalysis .
                FILTER NOT EXISTS {
                    ?analyst a cacontology-infrastructure:AnalystRole ;
                            uco-action:performer ?person .
                }
            }
        """ ] ;
    sh:targetClass cacontology-infrastructure:InfrastructureAnalysis .