Ontology Version: 2.2.0

cacontology-forensics:ForensicImageExtendedShape leaf node


URI

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

Label

Forensic Image Extended Shape

Description

Extended validation shape for forensic image instances with comprehensive digital evidence requirements.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-forensics:ForensicImage
cacontology-forensics:acquisitionMethod 1 1 xsd:string
1 xsd:boolean
1 xsd:string
1 xsd:string
cacontology-forensics:sourceHash 1 uco-core:UcoObject
cacontology-forensics:verificationHash 1 uco-core:UcoObject
cacontology-forensics:writeBlockingUsed 1 1 xsd:boolean
1 1 xsd:dateTimeStamp
1 1 xsd:dateTime
0 1 xsd:decimal

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:ForensicImageExtendedShape a sh:NodeShape ;
    rdfs:label "Forensic Image Extended Shape"@en ;
    rdfs:comment "Extended validation shape for forensic image instances with comprehensive digital evidence requirements."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "physical_imaging" "logical_imaging" "live_imaging" "chip_off" "jtag" "selective_imaging" ) ;
            sh:maxCount 1 ;
            sh:message "Forensic image must specify acquisition method from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-forensics:acquisitionMethod ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Forensic image must specify creation time."@en ;
            sh:minCount 1 ;
            sh:path uco-core:createdTime ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Forensic image must specify if write blocking was used."@en ;
            sh:minCount 1 ;
            sh:path cacontology-forensics:writeBlockingUsed ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 1000000000000.0 ;
            sh:message "Image size must be between 0 and 1TB (in bytes)."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0.0 ;
            sh:path uco-core:sizeInBytes ] ;
    sh:targetClass cacontology-forensics:ForensicImage .