Ontology Version: 2.2.0

cacontology-undercover:UndercoverEvidenceShape leaf node


URI

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

Label

Undercover Evidence Shape

Description

Validation shape for undercover evidence instances.

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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-undercover:UndercoverEvidenceShape a sh:NodeShape ;
    rdfs:label "Undercover Evidence Shape"@en ;
    rdfs:comment "Validation shape for undercover evidence instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "digital_communication" "audio_recording" "video_recording" "photographic" "documentary" "physical_evidence" "testimonial" ) ;
            sh:maxCount 1 ;
            sh:message "Undercover evidence must specify evidence type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:evidenceType ],
        [ sh:datatype xsd:string ;
            sh:in ( "covert_recording" "screen_capture" "digital_preservation" "physical_seizure" "witness_statement" "surveillance" ) ;
            sh:maxCount 1 ;
            sh:message "Undercover evidence must specify collection method from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:collectionMethod ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Undercover evidence must specify if chain of custody is maintained."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:chainOfCustodyMaintained ],
        [ sh:datatype xsd:string ;
            sh:in ( "verified" "authenticated" "questionable" "compromised" "inadmissible" ) ;
            sh:maxCount 1 ;
            sh:message "Undercover evidence must specify evidence authenticity from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:evidenceAuthenticity ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Undercover evidence must specify collection date."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:collectionDate ] ;
    sh:targetClass cacontology-undercover:UndercoverEvidence .