Ontology Version: 3.0.0

cacontology-physical-shapes:ComputerEquipmentShape leaf node


URI

https://cacontology.projectvic.org/physical/shapes#ComputerEquipmentShape

Label

Computer Equipment Shape

Description

Enhanced validation shape for computer equipment instances.

Shape Properties

Instances of cacontology-physical:ComputerEquipment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-physical:ComputerEquipment
cacontology-physical:deviceBrand 1 1 xsd:string
cacontology-physical:deviceModel 1 1 xsd:string
cacontology-physical:encryptionStatus 1 1 xsd:string
cacontology-physical:functionalStatus 1 1 xsd:string
cacontology-physical:PhysicalEvidence
1 1 xsd:dateTime
1 1 xsd:string
1 1 xsd:string
1 1 xsd:string
1 1 xsd:string
1 1 xsd:string
cacontology-physical:evidenceType 1 1 xsd:string
cacontology-physical:hasContaminationLevel 1 xsd:double
cacontology-physical:hasEvidenceBeginPoint 1 xsd:dateTimeStamp
cacontology-physical:hasEvidenceEndPoint 1 xsd:dateTimeStamp
cacontology-physical:hasEvidenceIntegrity 1 xsd:string
cacontology-physical:hasEvidenceReliability 1 xsd:double
cacontology-physical:hasForensicValue 1 xsd:string
cacontology-physical:hasPreservationQuality 1 xsd:string

Implementation

@prefix cacontology-physical: <https://cacontology.projectvic.org/physical#> .
@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical/shapes#> .
@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-physical-shapes:ComputerEquipmentShape a sh:NodeShape ;
    rdfs:label "Computer Equipment Shape"@en ;
    rdfs:comment "Enhanced validation shape for computer equipment instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 50 ;
            sh:message "Computer equipment must specify device brand (2-50 characters)."@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path cacontology-physical:deviceBrand ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Computer equipment must specify device model (2-100 characters)."@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path cacontology-physical:deviceModel ],
        [ sh:datatype xsd:string ;
            sh:in ( "unencrypted" "partially_encrypted" "fully_encrypted" "password_protected" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Computer equipment must specify encryption status from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-physical:encryptionStatus ],
        [ sh:datatype xsd:string ;
            sh:in ( "working" "non_functional" "partially_functional" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Computer equipment must specify functional status from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-physical:functionalStatus ] ;
    sh:targetClass cacontology-physical:ComputerEquipment .