https://cacontology.projectvic.org/asset-forfeiture#RecoveryPhaseShape
SHACL shape for recovery phases with anti-rigid gUFO Phase validation.
Instances of cacontology-asset-forfeiture:RecoveryPhase can have the following properties:
@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:RecoveryPhaseShape a sh:NodeShape ;
rdfs:label "Recovery Phase Shape"@en ;
rdfs:comment "SHACL shape for recovery phases with anti-rigid gUFO Phase validation."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-asset-forfeiture:LegalCompletionError . }
WHERE {
$this a cacontology-asset-forfeiture:RecoveryPhase ;
?action cacontology-asset-forfeiture:currentPhase $this .
FILTER NOT EXISTS {
?action cacontology-asset-forfeiture:previousPhase ?prev ;
?prev a cacontology-asset-forfeiture:LegalProceedingsPhase ;
?prev cacontology-asset-forfeiture:phaseStatus "completed" .
}
}
""" ;
sh:message "Recovery phase must have completed legal proceedings"@en ;
sh:prefixes cacontology-asset-forfeiture: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-asset-forfeiture:RecoveryPhase .