Ontology Version: 3.0.0

cacontology-recantation:RecantationStatementShape leaf node


URI

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

Label

Recantation Statement Shape

Description

Validation shape for recantation statement instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recantation:RecantationStatement
cacontology-recantation:retractsStatement 1 1 cacontology-recantation:DisclosureStatement
cacontology-recantation:VictimStatement
cacontology-recantation:statementAboutEvent 1 1 uco-action:Crime
cacontology-recantation:statementDate 1 1 xsd:dateTime
cacontology-recantation:statementMadeBy 1 1 uco-identity:Person
cacontology-recantation:statementReceivedBy 0 1 uco-identity:Person

Implementation

@prefix cacontology-recantation: <https://cacontology.projectvic.org/recantation#> .
@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:RecantationStatementShape a sh:NodeShape ;
    rdfs:label "Recantation Statement Shape"@en ;
    rdfs:comment "Validation shape for recantation statement instances."@en ;
    sh:property [ sh:class cacontology-recantation:DisclosureStatement ;
            sh:maxCount 1 ;
            sh:message "Recantation statement must identify the earlier disclosure statement it retracts."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:retractsStatement ] ;
    sh:targetClass cacontology-recantation:RecantationStatement .