https://cacontology.projectvic.org/legal-outcomes#CriminalSentenceShape
Validation shape for criminal sentences, including concurrency semantics for concurrent jail/probation terms (as in the Utah Christensen 2021 sentences).
Instances of cacontology-legal-outcomes:CriminalSentence can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-legal-outcomes:CriminalSentence | ||||
| cacontology-legal-outcomes:concurrentWith | 0 |
cacontology-legal-outcomes:CriminalSentence
|
||
| cacontology-legal-outcomes:sentenceConcurrency | 0 | 1 |
xsd:string
|
|
| cac-core:AssessmentResult | ||||
| cac-core:assesses | 1 | |||
| cac-core:hasConfidence | 1 |
xsd:decimal
|
||
| 1 |
xsd:string
|
|||
@prefix cacontology-legal-outcomes: <https://cacontology.projectvic.org/legal-outcomes#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-legal-outcomes:CriminalSentenceShape a sh:NodeShape ;
rdfs:label "Criminal Sentence Shape"@en ;
rdfs:comment "Validation shape for criminal sentences, including concurrency semantics for concurrent jail/probation terms (as in the Utah Christensen 2021 sentences)."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "concurrent" "consecutive" "mixed" ) ;
sh:maxCount 1 ;
sh:message "Sentence concurrency, when provided, must be one of: concurrent, consecutive, mixed."@en ;
sh:minCount 0 ;
sh:path cacontology-legal-outcomes:sentenceConcurrency ],
[ sh:class cacontology-legal-outcomes:CriminalSentence ;
sh:message "Sentences linked via concurrentWith must point to other CriminalSentence instances."@en ;
sh:minCount 0 ;
sh:path cacontology-legal-outcomes:concurrentWith ] ;
sh:targetClass cacontology-legal-outcomes:CriminalSentence .