Ontology Version: 2.2.0

cacontology-ai:AIDetectionPhaseShape leaf node


URI

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

Label

AI Detection Phase Shape

Description

SHACL shape for AI detection phases with anti-rigid gUFO Phase validation.

Target Classes (1)

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

gufo:Phase
cacontology-infrastructure:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-multi:hasCoordinationPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-multi:hasCoordinationPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasPhaseBeginPoint 1 xsd:dateTimeStamp
cacontology-partnerships:hasPhaseEndPoint 1 xsd:dateTimeStamp
cacontology-production:hasProductionPhaseBeginPoint 0 1 xsd:dateTimeStamp
cacontology-production:hasProductionPhaseEndPoint 0 1 xsd:dateTimeStamp
cacontology-temporal:hasLegalDeadline 1 xsd:dateTimeStamp
cacontology-temporal:hasMaximumDuration 1 xsd:duration
cacontology-temporal:hasMinimumDuration 1 xsd:duration
cacontology-temporal:hasTypicalDuration 1 xsd:duration
cacontology-temporal:phaseCompletionRate 1 xsd:decimal
cacontology-temporal:phaseEfficiency 1 xsd:decimal
cacontology-temporal:urgencyLevel 1 xsd:integer

Implementation

@prefix cacontology-ai: <https://cacontology.projectvic.org/ai-generated#> .
@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-ai:AIDetectionPhaseShape a sh:NodeShape ;
    rdfs:label "AI Detection Phase Shape"@en ;
    rdfs:comment "SHACL shape for AI detection phases with anti-rigid gUFO Phase validation."@en ;
    sh:property [ sh:hasValue gufo:Phase ;
            sh:message "AI detection phases must be instances of anti-rigid gUFO Phase"@en ;
            sh:path rdf:type ],
        [ sh:datatype xsd:dateTime ;
            sh:message "Detection phases must have begin timestamps"@en ;
            sh:minCount 1 ;
            sh:path cacontology-gufo:beginTimePoint ] ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
            INSERT { $this a cacontology-ai:AntiRigidityError . }
            WHERE {
                $this a cacontology-ai:AIDetectionPhase .
                FILTER NOT EXISTS { 
                    $this cacontology-gufo:hasAntiRigidityConstraint ?constraint .
                }
            }
        """ ;
            sh:message "AI detection phases must demonstrate anti-rigidity (can change based on detection results)"@en ;
            sh:prefixes cacontology-ai: ;
            sh:severity sh:Violation ] ;
    sh:targetClass cacontology-ai:AIDetectionPhase .