Ontology Version: 2.2.0

cacontology-ai:AIGenerationCrossReferenceShape leaf node


URI

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

Label

AI Generation Cross Reference Shape

Description

Enhanced validation that AI-generated content has associated gUFO Event generation processes.

Target Classes (1)

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-ai:AIGeneratedCSAM
cacontology-ai:aiModelUsed 0 1 xsd:string
cacontology-ai:artificialnessLevel 1 1 xsd:string
cacontology-ai:realVictimDepicted 1 1 xsd:boolean
cacontology-ai:renderingQuality 0 1 xsd:string
1 xsd:dateTime

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:AIGenerationCrossReferenceShape a sh:NodeShape ;
    rdfs:label "AI Generation Cross Reference Shape"@en ;
    rdfs:comment "Enhanced validation that AI-generated content has associated gUFO Event generation processes."@en ;
    sh:sparql [ sh:message "AI-generated CSAM should have an associated gUFO Event generation process."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-ai:AIGeneratedCSAM .
                FILTER NOT EXISTS {
                    $this cacontology-ai:generatedUsing ?generation .
                    ?generation a cacontology-ai:AIContentGeneration .
                    ?generation a gufo:Event .
                }
            }
        """ ] ;
    sh:targetClass cacontology-ai:AIGeneratedCSAM .