https://cacontology.projectvic.org/legal-outcomes#SentenceDurationValidationShape
Validates sentence duration consistency.
@prefix cacontology-legal-outcomes: <https://cacontology.projectvic.org/legal-outcomes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-legal-outcomes:SentenceDurationValidationShape a sh:NodeShape ;
rdfs:label "Sentence Duration Validation Shape"@en ;
rdfs:comment "Validates sentence duration consistency."@en ;
sh:sparql [ sh:message "Imprisonment sentences should have duration specified."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-legal-outcomes:sentenceType "imprisonment" .
FILTER NOT EXISTS {
$this cacontology-legal-outcomes:sentenceDuration ?duration .
}
}
""" ] ;
sh:targetClass cacontology-legal-outcomes:SentencingOutcome .