Ontology Version: 2.2.0

cacontology-ai:SyntheticMediaExaminerShape leaf node


URI

https://cacontology.projectvic.org/ai-generated#SyntheticMediaExaminerShape

Label

Synthetic Media Examiner Shape

Description

SHACL shape for synthetic media examiner roles with specialized gUFO Role validation.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

gufo: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-production:hasRoleBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasRoleEndPoint 0 1 xsd:dateTimeStamp

Implementation

@prefix cacontology-ai: <https://cacontology.projectvic.org/ai-generated#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-ai:SyntheticMediaExaminerShape a sh:NodeShape ;
    rdfs:label "Synthetic Media Examiner Shape"@en ;
    rdfs:comment "SHACL shape for synthetic media examiner roles with specialized gUFO Role validation."@en ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
            INSERT { $this a cacontology-ai:SpecializedCompetencyError . }
            WHERE {
                $this a cacontology-ai:SyntheticMediaExaminer .
                FILTER NOT EXISTS { 
                    $this cacontology-ai:hasCompetency ?competency .
                    ?competency cacontology-ai:competencyType "synthetic_media_analysis" .
                }
            }
        """ ;
            sh:message "Synthetic media examiners must have synthetic media analysis competency"@en ;
            sh:prefixes cacontology-ai: ;
            sh:severity sh:Violation ] ;
    sh:targetClass cacontology-ai:SyntheticMediaExaminer .