Ontology Version: 2.2.0

cacontology-forensics:ForensicToolShape leaf node


URI

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

Label

Forensic Tool Shape

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-forensics:ForensicToolShape a sh:NodeShape ;
    rdfs:label "Forensic Tool Shape"@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "A forensic tool must have exactly one name"@en ;
            sh:minCount 1 ;
            sh:path uco-core:name ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "Tool version should be specified (gUFO quality aspect)"@en ;
            sh:path cacontology-forensics:toolVersion ],
        [ sh:datatype xsd:string ;
            sh:in ( "validated" "approved" "testing" "deprecated" ) ;
            sh:maxCount 1 ;
            sh:message "Validation status must be validated, approved, testing, or deprecated (gUFO mode aspect)"@en ;
            sh:path cacontology-forensics:validationStatus ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Tool reliability must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-forensics:toolReliability ] ;
    sh:targetClass cacontology-forensics:ForensicImagingTool,
        cacontology-forensics:HashingTool,
        cacontology-forensics:MemoryForensicTool,
        cacontology-forensics:MobileForensicTool,
        cacontology-forensics:NetworkForensicTool .