Ontology Version: 2.2.0

cacontology-asset-forfeiture:GUFOTemporalValidationShape leaf node


URI

https://cacontology.projectvic.org/asset-forfeiture#GUFOTemporalValidationShape

Label

gUFO Temporal Validation Shape

Description

Enhanced temporal consistency validation for asset forfeiture gUFO Events using gUFO temporal framework.

Shape Properties

Instances of cacontology-asset-forfeiture:CACTInvestigation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-asset-forfeiture:CACTInvestigation
cacontology-gufo:investigationBeginTime 1 1 xsd:dateTime
0 1 xsd:dateTime
1 1 cacontology-asset-forfeiture:CriminalAssetsConfiscationTaskforce

Implementation

@prefix cacontology-asset-forfeiture: <https://cacontology.projectvic.org/asset-forfeiture#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-asset-forfeiture:GUFOTemporalValidationShape a sh:NodeShape ;
    rdfs:label "gUFO Temporal Validation Shape"@en ;
    rdfs:comment "Enhanced temporal consistency validation for asset forfeiture 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:forfeitureBeginTime ?begin .
                $this cacontology-gufo:forfeitureEndTime ?end .
                FILTER (?begin >= ?end)
            }
        """ ] ;
    sh:targetClass cacontology-asset-forfeiture:AssetAssessmentAction,
        cacontology-asset-forfeiture:AssetForfeitureAction,
        cacontology-asset-forfeiture:CACTInvestigation .