Ontology Version: 2.2.0

cacontology-forensics:EvidenceTriageSystemShape leaf node


URI

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

Label

Evidence Triage System Shape

Description

Validation shape for evidence triage system instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-forensics:EvidenceTriageSystem
cacontology-forensics:priorityClassification 1 1 xsd:string
cacontology-forensics:triageAccuracy 1 1 xsd:decimal
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 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-forensics:EvidenceTriageSystemShape a sh:NodeShape ;
    rdfs:label "Evidence Triage System Shape"@en ;
    rdfs:comment "Validation shape for evidence triage system instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Triage accuracy must be between 0.0 and 1.0."@en ;
            sh:minCount 1 ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-forensics:triageAccuracy ],
        [ sh:datatype xsd:string ;
            sh:in ( "critical" "high" "medium" "low" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Priority classification must be from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-forensics:priorityClassification ] ;
    sh:targetClass cacontology-forensics:EvidenceTriageSystem .