Ontology Version: 2.2.0

cacontology-ai:DetectionToolCrossReferenceShape leaf node


URI

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

Label

Detection Tool Cross Reference Shape

Description

Enhanced validation that AI detection processes use appropriate gUFO Object tools.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-ai:AIContentDetection
cacontology-ai:detectionConfidence 0 1 xsd:decimal
cacontology-ai:detectionMethod 0 1 xsd:string
cacontology-ai:evidenceAdmissibility 0 1 xsd:string
cacontology-ai:processingTime 0 1 xsd:decimal
cacontology-gufo:detectionTimePoint 1 xsd:dateTime
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:DetectionToolCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Detection Tool Cross Reference Shape"@en ;
    rdfs:comment "Enhanced validation that AI detection processes use appropriate gUFO Object tools."@en ;
    sh:sparql [ sh:message "AI content detection should use gUFO Object detection tools."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-ai:AIContentDetection .
                FILTER NOT EXISTS {
                    $this cacontology-ai:usesDetectionTool ?tool .
                    ?tool a cacontology-ai:AIDetectionTool .
                    ?tool a gufo:Object .
                }
            }
        """ ] ;
    sh:targetClass cacontology-ai:AIContentDetection .