Ontology Version: 2.2.0

cacontology-forensics:ForensicExaminerRoleShape leaf node


URI

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

Label

Forensic Examiner Role Shape

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@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:ForensicExaminerRoleShape a sh:NodeShape ;
    rdfs:label "Forensic Examiner Role Shape"@en ;
    sh:property [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Forensic examiner role must have begin timestamp (gUFO temporal)"@en ;
            sh:minCount 1 ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Forensic examiner role may have end timestamp (gUFO temporal)"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ],
        [ sh:hasValue "examiner" ;
            sh:message "A forensic examiner role must have kindOfRelationship value 'examiner'"@en ;
            sh:path uco-core:kindOfRelationship ],
        [ sh:datatype xsd:string ;
            sh:in ( "trainee" "certified" "senior" "expert" ) ;
            sh:maxCount 1 ;
            sh:message "Certification level must be trainee, certified, senior, or expert (gUFO quality aspect)"@en ;
            sh:path cacontology-forensics:certificationLevel ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "Specialization area should be specified (gUFO quality aspect)"@en ;
            sh:path cacontology-forensics:specializationArea ] ;
    sh:targetClass cacontology-forensics:ForensicExaminerRole .