Ontology Version: 2.2.0

cacontology-physical-shapes:EvidenceParticipationShape leaf node


URI

https://cacontology.projectvic.org/physical-evidence/shapes#EvidenceParticipationShape

Label

Evidence Participation Shape

Description

Validates gUFO participation constraints for physical evidence.

Implementation

@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical-evidence/shapes#> .
@prefix cacontology-physical1: <https://cacontology.projectvic.org/physical-evidence#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-physical-shapes:EvidenceParticipationShape a sh:NodeShape ;
    rdfs:label "Evidence Participation Shape"@en ;
    rdfs:comment "Validates gUFO participation constraints for physical evidence."@en ;
    sh:sparql [ sh:message "Physical evidence must be associated with at least one search or procurement event (gUFO participation constraint)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this rdf:type cacontology-physical:PhysicalEvidence .
                FILTER NOT EXISTS {
                    { $this cacontology-physical:seizedDuring ?search } UNION
                    { $this cacontology-physical:procuredBy ?procurement }
                }
            }
        """ ] ;
    sh:targetClass cacontology-physical1:PhysicalEvidence .