Ontology Version: 3.0.0

cacontology-ai:AIForensicAnalystShape leaf node


URI

https://cacontology.projectvic.org/ai-csam#AIForensicAnalystShape

Label

AI Forensic Analyst Shape

Description

SHACL shape for AI forensic analyst roles with anti-rigid gUFO Role validation.

Shape Properties

Instances of cacontology-ai:AIForensicAnalyst can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

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-ai: <https://cacontology.projectvic.org/ai-csam#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-ai:AIForensicAnalystShape a sh:NodeShape ;
    rdfs:label "AI Forensic Analyst Shape"@en ;
    rdfs:comment "SHACL shape for AI forensic analyst roles with anti-rigid gUFO Role validation."@en ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
            INSERT { $this a cacontology-ai:CompetencyValidationError . }
            WHERE {
                $this a cacontology-ai:AIForensicAnalyst .
                FILTER NOT EXISTS { 
                    $this cacontology-ai:hasCompetency ?competency ;
                    ?competency cacontology-ai:competencyType "ai_content_analysis" .
                }
            }
        """ ;
            sh:message "AI forensic analysts must demonstrate specialized competencies"@en ;
            sh:prefixes cacontology-ai: ;
            sh:severity sh:Violation ] ;
    sh:targetClass cacontology-ai:AIForensicAnalyst .