Ontology Version: 3.0.0

cacontology-recantation:StatementChangeContextShape leaf node


URI

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

Label

Statement Change Context Shape

Description

Validation shape for statement change context instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recantation:StatementChangeContext
cacontology-recantation:assessedByAction 1 cacontology-recantation:RecantationAssessment
cacontology-recantation:hasRecantationRiskFactor 1 cacontology-recantation:RecantationRiskFactor
cacontology-recantation:reportedThroughNotification 0 1 cacontology-recantation:RecantationNotification

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:StatementChangeContextShape a sh:NodeShape ;
    rdfs:label "Statement Change Context Shape"@en ;
    rdfs:comment "Validation shape for statement change context instances."@en ;
    sh:property [ sh:class cacontology-recantation:RecantationRiskFactor ;
            sh:message "Statement change context should include at least one recantation risk factor."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:hasRecantationRiskFactor ],
        [ sh:class cacontology-recantation:RecantationNotification ;
            sh:maxCount 1 ;
            sh:message "Statement change context may identify the notification through which the recantation was reported."@en ;
            sh:minCount 0 ;
            sh:path cacontology-recantation:reportedThroughNotification ],
        [ sh:class cacontology-recantation:RecantationAssessment ;
            sh:message "Statement change context must link to a recantation assessment action."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:assessedByAction ] ;
    sh:targetClass cacontology-recantation:StatementChangeContext .