Ontology Version: 2.2.0

cacontology-forensics:MassDigitalEvidenceProcessingShape leaf node


URI

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

Label

Mass Digital Evidence Processing Shape

Description

Validation shape for mass digital evidence processing instances.

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#> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-forensics:MassDigitalEvidenceProcessingShape a sh:NodeShape ;
    rdfs:label "Mass Digital Evidence Processing Shape"@en ;
    rdfs:comment "Validation shape for mass digital evidence processing instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000.0 ;
            sh:message "Evidence volume must be between 0.001 and 10000 terabytes."@en ;
            sh:minCount 1 ;
            sh:minInclusive 0.001 ;
            sh:path cacontology-forensics:evidenceVolumeTerabytes ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1000.0 ;
            sh:message "Files processed must be between 0.001 and 1000 million."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0.001 ;
            sh:path cacontology-forensics:filesProcessedMillions ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 3650 ;
            sh:message "Processing timeframe must be between 1 and 3650 days (10 years)."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-forensics:processingTimeframeDays ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Mass processing must specify start time."@en ;
            sh:minCount 1 ;
            sh:path uco-core:startTime ] ;
    sh:targetClass cacontology-forensics:MassDigitalEvidenceProcessing .