Ontology Version: 3.0.0

cacontology-legal-outcomes:StandardOfReviewShape leaf node


URI

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

Label

Standard of Review Shape

Description

Validation shape for standards of review.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal-outcomes:StandardOfReview
cacontology-legal-outcomes:standardOfReviewType 1 1 xsd:string
1

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:StandardOfReviewShape a sh:NodeShape ;
    rdfs:label "Standard of Review Shape"@en ;
    rdfs:comment "Validation shape for standards of review."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "abuse_of_discretion" "de_novo" "clear_error" "plain_error" "substantial_evidence" "reasonableness" "other" ) ;
            sh:maxCount 1 ;
            sh:message "Standard of review type must be one of: abuse_of_discretion, de_novo, clear_error, plain_error, substantial_evidence, reasonableness, other."@en ;
            sh:minCount 1 ;
            sh:path cacontology-legal-outcomes:standardOfReviewType ],
        [ sh:message "Standard of review should have an rdfs:label."@en ;
            sh:minCount 1 ;
            sh:path rdfs:label ] ;
    sh:targetClass cacontology-legal-outcomes:StandardOfReview .