Ontology Version: 2.2.0

cacontology-undercover:EvidenceChainValidationShape leaf node


URI

https://cacontology.projectvic.org/undercover#EvidenceChainValidationShape

Label

Evidence Chain Validation Shape

Description

Validates evidence chain of custody requirements.

Shape Properties

Instances of cacontology-undercover:UndercoverEvidence can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-undercover: <https://cacontology.projectvic.org/undercover#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-undercover:EvidenceChainValidationShape a sh:NodeShape ;
    rdfs:label "Evidence Chain Validation Shape"@en ;
    rdfs:comment "Validates evidence chain of custody requirements."@en ;
    sh:sparql [ sh:message "All undercover evidence must maintain chain of custody."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-undercover:UndercoverEvidence ;
                      cacontology-undercover:chainOfCustodyMaintained false .
            }
        """ ] ;
    sh:targetClass cacontology-undercover:UndercoverEvidence .