Ontology Version: 2.2.0

cacontology-ai:GUFOTemporalValidationShape leaf node


URI

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

Label

gUFO Temporal Validation Shape

Description

Enhanced temporal consistency validation for AI-related gUFO Events using gUFO temporal framework.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-ai:AICSAMInvestigation
cacontology-ai:investigationChallengeLevel 0 1 xsd:string
cacontology-ai:legalFrameworkChallenges 0 5 xsd:string
cacontology-ai:prosecutionDifficulty 0 1 xsd:string
cacontology-ai:victimIdentificationDifficulty 0 1 xsd:string
1 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:GUFOTemporalValidationShape a sh:NodeShape ;
    rdfs:label "gUFO Temporal Validation Shape"@en ;
    rdfs:comment "Enhanced temporal consistency validation for AI-related gUFO Events using gUFO temporal framework."@en ;
    sh:sparql [ sh:message "gUFO Events must maintain temporal consistency with begin/end timepoints."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a gufo:Event .
                $this cacontology-gufo:beginTimePoint ?begin .
                $this cacontology-gufo:endTimePoint ?end .
                FILTER (?begin >= ?end)
            }
        """ ] ;
    sh:targetClass cacontology-ai:AICSAMInvestigation,
        cacontology-ai:AIContentDetection,
        cacontology-ai:AIContentGeneration,
        cacontology-ai:GenerationSourceTracking,
        cacontology-ai:ModelIdentification,
        cacontology-ai:TrainingDataAnalysis .