Ontology Version: 3.0.0

cacontology-recantation:RecantationAssessmentShape leaf node


URI

https://cacontology.projectvic.org/recantation#RecantationAssessmentShape

Label

Recantation Assessment Shape

Description

Validation shape for recantation assessment instances.

Shape Properties

Instances of cacontology-recantation:RecantationAssessment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recantation:RecantationAssessment
cacontology-recantation:assessmentDisposition 1 1 xsd:string

Implementation

@prefix cacontology-recantation: <https://cacontology.projectvic.org/recantation#> .
@prefix case-investigation: <https://ontology.caseontology.org/case/investigation/> .
@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-recantation:RecantationAssessmentShape a sh:NodeShape ;
    rdfs:label "Recantation Assessment Shape"@en ;
    rdfs:comment "Validation shape for recantation assessment instances."@en ;
    sh:property [ sh:hasValue case-investigation:InvestigativeAction ;
            sh:message "Recantation assessment must be typed as a CASE investigative action."@en ;
            sh:path rdf:type ],
        [ sh:datatype xsd:string ;
            sh:in ( "continue_investigation" "seek_additional_forensic_interview" "strengthen_corroboration" "trial_preparation_adjustment" "defer_case_decision" ) ;
            sh:maxCount 1 ;
            sh:message "Recantation assessment must specify the assessment disposition from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:assessmentDisposition ] ;
    sh:targetClass cacontology-recantation:RecantationAssessment .