Ontology Version: 2.2.0

cacontology-infrastructure:TemporalValidationShape leaf node


URI

https://cacontology.projectvic.org/infrastructure#TemporalValidationShape

Label

Temporal Validation Shape

Description

Validates temporal consistency for infrastructure operations.

Shape Properties

Instances of cacontology-infrastructure:FinancialFlowAnalysis can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-infrastructure:FinancialFlowAnalysis
cacontology-infrastructure:financialComplexity 0 1 xsd:string
1 1 xsd:dateTime
cacontology-infrastructure:InfrastructureAnalysis
cacontology-infrastructure:hasAnalysisAccuracy 1 xsd:double
cacontology-infrastructure:hasAnalysisDepth 1 xsd:string
cacontology-infrastructure:hasAnalysisTimeliness 1 xsd:string

Implementation

@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-infrastructure:TemporalValidationShape a sh:NodeShape ;
    rdfs:label "Temporal Validation Shape"@en ;
    rdfs:comment "Validates temporal consistency for infrastructure operations."@en ;
    sh:sparql [ sh:message "Start time must be before end time when both are specified."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this uco-core:startTime ?start ;
                      uco-core:endTime ?end .
                FILTER (?start >= ?end)
            }
        """ ] ;
    sh:targetClass cacontology-infrastructure:AccountFreezing,
        cacontology-infrastructure:DataMirrorCreation,
        cacontology-infrastructure:DomainSinkholing,
        cacontology-infrastructure:FinancialFlowAnalysis,
        cacontology-infrastructure:InfrastructureAnalysis,
        cacontology-infrastructure:InfrastructureTakedown,
        cacontology-infrastructure:NetworkTopologyAnalysis,
        cacontology-infrastructure:ServerSeizure,
        cacontology-infrastructure:UserAccessPatternAnalysis .