Ontology Version: 2.2.0

cacontology-forensics:MassProcessingValidationShape leaf node


URI

https://cacontology.projectvic.org/forensics#MassProcessingValidationShape

Label

Mass Processing Validation Shape

Description

Validates mass digital evidence processing consistency.

Shape Properties

Instances of cacontology-forensics:MassDigitalEvidenceProcessing can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-forensics:MassDigitalEvidenceProcessing
cacontology-forensics:evidenceVolumeTerabytes 1 1 xsd:decimal
cacontology-forensics:filesProcessedMillions 0 1 xsd:decimal
cacontology-forensics:processingTimeframeDays 1 1 xsd:nonNegativeInteger
1 1 xsd:dateTime

Implementation

@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-forensics:MassProcessingValidationShape a sh:NodeShape ;
    rdfs:label "Mass Processing Validation Shape"@en ;
    rdfs:comment "Validates mass digital evidence processing consistency."@en ;
    sh:sparql [ sh:message "Large evidence volumes should have reasonable processing timeframes."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-forensics:evidenceVolumeTerabytes ?volume ;
                      cacontology-forensics:processingTimeframeDays ?days .
                FILTER (?volume > 100.0 && ?days < 30)
            }
        """ ] ;
    sh:targetClass cacontology-forensics:MassDigitalEvidenceProcessing .