https://cacontology.projectvic.org/infrastructure#TakedownSequenceValidationShape
Validates that infrastructure analysis occurs after takedown operations.
Instances of cacontology-infrastructure:InfrastructureAnalysis can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-infrastructure:InfrastructureAnalysis | ||||
| cacontology-infrastructure:hasAnalysisAccuracy | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasAnalysisDepth | 1 |
xsd:string
|
||
| cacontology-infrastructure:hasAnalysisTimeliness | 1 |
xsd:string
|
||
@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:TakedownSequenceValidationShape a sh:NodeShape ;
rdfs:label "Takedown Sequence Validation Shape"@en ;
rdfs:comment "Validates that infrastructure analysis occurs after takedown operations."@en ;
sh:sparql [ sh:message "Infrastructure analysis should occur after takedown operations when analyzing seized infrastructure."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-infrastructure:InfrastructureAnalysis ;
uco-core:startTime ?analysisTime ;
cacontology-infrastructure:analysesInfrastructure ?infrastructure .
?takedown cacontology-infrastructure:targetsInfrastructure ?infrastructure ;
uco-core:startTime ?takedownTime .
FILTER (?analysisTime < ?takedownTime)
}
""" ] ;
sh:targetClass cacontology-infrastructure:InfrastructureAnalysis .