Ontology Version: 2.11.0

cacontology-sentencing:AppellateIssueShape leaf node


URI

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

Label

Appellate Issue Shape

Description

Validation shape for appellate issues (issue → disposition, optional evidence-rule and standard-of-review links).

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-sentencing:AppellateIssue
cacontology-sentencing:appliesStandardOfReview 0 cacontology-sentencing:StandardOfReview
cacontology-sentencing:citesEvidenceRule 0 cacontology-sentencing:EvidenceRule
cacontology-sentencing:issueDisposition 1 cacontology-sentencing:AppellateDisposition
1

Implementation

@prefix cacontology-sentencing: <https://cacontology.projectvic.org/sentencing#> .
@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:AppellateIssueShape a sh:NodeShape ;
    rdfs:label "Appellate Issue Shape"@en ;
    rdfs:comment "Validation shape for appellate issues (issue → disposition, optional evidence-rule and standard-of-review links)."@en ;
    sh:property [ sh:message "Appellate issue must have an rdfs:label."@en ;
            sh:minCount 1 ;
            sh:path rdfs:label ],
        [ sh:class cacontology-sentencing:AppellateDisposition ;
            sh:message "Appellate issue must link to at least one AppellateDisposition via issueDisposition."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sentencing:issueDisposition ],
        [ sh:class cacontology-sentencing:StandardOfReview ;
            sh:message "appliesStandardOfReview must point to a StandardOfReview."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sentencing:appliesStandardOfReview ],
        [ sh:class cacontology-sentencing:EvidenceRule ;
            sh:message "citesEvidenceRule must point to an EvidenceRule."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sentencing:citesEvidenceRule ] ;
    sh:targetClass cacontology-sentencing:AppellateIssue .