https://cacontology.projectvic.org/sentencing#LegalProceedingShape
Validation shape for legal proceeding instances, including pretrial bail status (e.g., held without bail in the Utah Christensen case).
Instances of cacontology-sentencing:LegalProceeding can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-sentencing:LegalProceeding | ||||
| cacontology-sentencing:bailStatus | 0 | 1 |
xsd:string
|
|
@prefix cacontology-sentencing: <https://cacontology.projectvic.org/sentencing#> .
@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-sentencing:LegalProceedingShape a sh:NodeShape ;
rdfs:label "Legal Proceeding Shape"@en ;
rdfs:comment "Validation shape for legal proceeding instances, including pretrial bail status (e.g., held without bail in the Utah Christensen case)."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "released_on_bail" "held_without_bail" "released_on_own_recognizance" "bail_denied" "bail_revoked" ) ;
sh:maxCount 1 ;
sh:message "Bail status, when provided, must be one of: released_on_bail, held_without_bail, released_on_own_recognizance, bail_denied, bail_revoked."@en ;
sh:minCount 0 ;
sh:path cacontology-sentencing:bailStatus ] ;
sh:targetClass cacontology-sentencing:LegalProceeding .