https://cacontology.projectvic.org/ai-csam#ContentGenerationPhaseShape
SHACL shape for content generation phases with anti-rigid gUFO Phase validation.
Instances of cacontology-ai:ContentGenerationPhase can have the following properties:
@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:ContentGenerationPhaseShape a sh:NodeShape ;
rdfs:label "Content Generation Phase Shape"@en ;
rdfs:comment "SHACL shape for content generation phases with anti-rigid gUFO Phase validation."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-ai:PhaseSequenceError . }
WHERE {
$this a cacontology-ai:ContentGenerationPhase ;
?nextPhase cacontology-ai:followsPhase $this ;
?nextPhase a cacontology-ai:AIDetectionPhase .
$this cacontology-gufo:endTimePoint ?thisEnd ;
?nextPhase cacontology-gufo:beginTimePoint ?nextStart .
FILTER(?nextStart <= ?thisEnd)
}
""" ;
sh:message "Generation phases must follow logical sequence"@en ;
sh:prefixes cacontology-ai: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-ai:ContentGenerationPhase .