Ontology Version: 3.0.0

cacontology-recantation:VictimStatementShape leaf node


URI

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

Label

Victim Statement Shape

Description

Validation shape for victim statement instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

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 uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-recantation:VictimStatementShape a sh:NodeShape ;
    rdfs:label "Victim Statement Shape"@en ;
    rdfs:comment "Validation shape for victim statement instances."@en ;
    sh:property [ sh:class uco-identity:Person ;
            sh:maxCount 1 ;
            sh:message "Victim statement must identify the person who made the statement."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:statementMadeBy ],
        [ sh:class uco-identity:Person ;
            sh:maxCount 1 ;
            sh:message "Victim statement may identify the person who received the statement."@en ;
            sh:minCount 0 ;
            sh:path cacontology-recantation:statementReceivedBy ],
        [ sh:class uco-action:Crime ;
            sh:maxCount 1 ;
            sh:message "Victim statement must identify the abuse or exploitation event it concerns."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:statementAboutEvent ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Victim statement must specify when the statement was made or recorded."@en ;
            sh:minCount 1 ;
            sh:path cacontology-recantation:statementDate ] ;
    sh:targetClass cacontology-recantation:VictimStatement .