Ontology Version: 2.11.0

cacontology-sentencing:AppellateDispositionShape leaf node


URI

https://cacontology.projectvic.org/sentencing#AppellateDispositionShape

Label

Appellate Disposition Shape

Description

Validation shape for appellate dispositions.

Shape Properties

Instances of cacontology-sentencing:AppellateDisposition can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-sentencing:AppellateDisposition
cacontology-sentencing:dispositionType 1 1 xsd:string
1

Implementation

@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:AppellateDispositionShape a sh:NodeShape ;
    rdfs:label "Appellate Disposition Shape"@en ;
    rdfs:comment "Validation shape for appellate dispositions."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "affirmed" "reversed" "vacated" "remanded" "affirmed_in_part_reversed_in_part" "dismissed" "other" ) ;
            sh:maxCount 1 ;
            sh:message "Disposition type must be one of: affirmed, reversed, vacated, remanded, affirmed_in_part_reversed_in_part, dismissed, other."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sentencing:dispositionType ],
        [ sh:message "Appellate disposition should have an rdfs:label."@en ;
            sh:minCount 1 ;
            sh:path rdfs:label ] ;
    sh:targetClass cacontology-sentencing:AppellateDisposition .