Ontology Version: 3.0.0

cacontology-physical-shapes:ForensicAnalystRoleShape leaf node


URI

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

Label

Forensic Analyst Role Shape

Description

Enhanced validation shape for forensic analyst role instances with gUFO quality aspects.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-physical:ForensicAnalystRole
cacontology-physical:hasAnalysisAccuracy 1 xsd:double
cacontology-physical:hasAnalysisReliability 1 xsd:string
cacontology-physical:hasMethodValidation 1 xsd:string
0 1 xsd:string
cac-core:Role
cacontology-infrastructure:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-multi:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-physical:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology-physical:hasRoleEndPoint 1 xsd:dateTimeStamp
cacontology-production:hasRoleBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasRoleEndPoint 0 1 xsd:dateTimeStamp
cacontology:hasRoleBeginPoint 1 xsd:dateTimeStamp
cacontology:hasRoleEndPoint 1 xsd:dateTimeStamp
0 cacontology:CACInvestigation

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:ForensicAnalystRoleShape a sh:NodeShape ;
    rdfs:label "Forensic Analyst Role Shape"@en ;
    rdfs:comment "Enhanced validation shape for forensic analyst role instances with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "Forensic analyst role label should be between 5 and 100 characters when provided."@en ;
            sh:minCount 0 ;
            sh:minLength 5 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Analysis accuracy must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-physical:hasAnalysisAccuracy ],
        [ sh:datatype xsd:string ;
            sh:in ( "unreliable" "questionable" "acceptable" "reliable" "highly_reliable" ) ;
            sh:maxCount 1 ;
            sh:message "Analysis reliability must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-physical:hasAnalysisReliability ],
        [ sh:datatype xsd:string ;
            sh:in ( "unvalidated" "partially_validated" "validated" "peer_reviewed" "certified" ) ;
            sh:maxCount 1 ;
            sh:message "Method validation must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-physical:hasMethodValidation ] ;
    sh:targetClass cacontology-physical:ForensicAnalystRole .