Ontology Version: 2.2.0

cacontology-forensics:ScalableHashAnalysisShape leaf node


URI

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

Label

Scalable Hash Analysis Shape

Description

Validation shape for scalable hash analysis instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-forensics:ScalableHashAnalysis
cacontology-forensics:hashDatabaseSize 1 1 xsd:decimal
cacontology-forensics:hashMatchesFound 0 1 xsd:nonNegativeInteger
cacontology-forensics:AutomatedContentAnalysis
cacontology-forensics:automationPercentage 1 1 xsd:decimal
cacontology-forensics:falsePositiveRate 0 1 xsd:decimal
cacontology-forensics:processingSpeed 0 1 xsd:decimal
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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-forensics:ScalableHashAnalysisShape a sh:NodeShape ;
    rdfs:label "Scalable Hash Analysis Shape"@en ;
    rdfs:comment "Validation shape for scalable hash analysis instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000.0 ;
            sh:message "Hash database size must be between 0.001 and 10000 million entries."@en ;
            sh:minCount 1 ;
            sh:minInclusive 0.001 ;
            sh:path cacontology-forensics:hashDatabaseSize ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000000 ;
            sh:message "Hash matches found must be between 0 and 10 million."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0 ;
            sh:path cacontology-forensics:hashMatchesFound ] ;
    sh:targetClass cacontology-forensics:ScalableHashAnalysis .