https://cacontology.projectvic.org/forensics#ForensicImageShape
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
|
||
@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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:ForensicImageShape a sh:NodeShape ;
rdfs:label "Forensic Image Shape"@en ;
sh:property [ sh:datatype xsd:dateTimeStamp ;
sh:maxCount 1 ;
sh:message "Forensic image must have creation timestamp (gUFO temporal)"@en ;
sh:minCount 1 ;
sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
[ sh:class uco-core:UcoObject ;
sh:message "A forensic image must have at least one verification hash"@en ;
sh:minCount 1 ;
sh:path cacontology-forensics:verificationHash ],
[ sh:class uco-core:UcoObject ;
sh:message "A forensic image must have at least one source hash for verification"@en ;
sh:minCount 1 ;
sh:path cacontology-forensics:sourceHash ],
[ sh:datatype xsd:string ;
sh:in ( "E01" "DD" "AFF" "VMDK" "VHD" ) ;
sh:maxCount 1 ;
sh:message "Image format must be E01, DD, AFF, VMDK, or VHD"@en ;
sh:path cacontology-forensics:imageFormat ],
[ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:message "Must specify if compression was used (gUFO quality aspect)"@en ;
sh:path cacontology-forensics:compressionUsed ],
[ sh:datatype xsd:string ;
sh:in ( "verified" "corrupted" "unknown" ) ;
sh:maxCount 1 ;
sh:message "Image integrity must be verified, corrupted, or unknown (gUFO quality aspect)"@en ;
sh:path cacontology-forensics:imageIntegrity ] ;
sh:targetClass cacontology-forensics:ForensicImage .