Ontology Version: 3.0.0

cacontology-legal-outcomes:LegalProceedingShape leaf node


URI

https://cacontology.projectvic.org/legal-outcomes#LegalProceedingShape

Label

Legal Proceeding Shape

Description

Validation shape for legal proceeding instances, including pretrial bail status (e.g., held without bail in the Utah Christensen case).

Shape Properties

Instances of cacontology-legal-outcomes:LegalProceeding can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal-outcomes:LegalProceeding
cacontology-legal-outcomes:bailStatus 0 1 xsd:string

Implementation

@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: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-legal-outcomes:bailStatus ] ;
    sh:targetClass cacontology-legal-outcomes:LegalProceeding .