Ontology Version: 2.2.0

cacontology-temporal-shapes:ResumptionEventShape leaf node


URI

https://cacontology.projectvic.org/temporal/shapes#ResumptionEventShape

Label

Resumption Event Shape

Description

Validates links from ResumptionEvent to the resumed investigation and the terminated suspension situation.

Shape Properties

Instances of cacontology-temporal:ResumptionEvent can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-temporal:ResumptionEvent
cacontology-temporal:resumes 1 1 cacontology-gufo:Investigation
cacontology-temporal:terminatesSuspension 1 1 cacontology-temporal:SuspendedSituation

Implementation

@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@prefix cacontology-temporal: <https://cacontology.projectvic.org/temporal#> .
@prefix cacontology-temporal-shapes: <https://cacontology.projectvic.org/temporal/shapes#> .
@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-temporal-shapes:ResumptionEventShape a sh:NodeShape ;
    rdfs:label "Resumption Event Shape"@en ;
    rdfs:comment "Validates links from ResumptionEvent to the resumed investigation and the terminated suspension situation."@en ;
    sh:property [ sh:class cacontology-gufo:Investigation ;
            sh:maxCount 1 ;
            sh:message "ResumptionEvent must resume exactly one cacontology-gufo:Investigation."@en ;
            sh:minCount 1 ;
            sh:path cacontology-temporal:resumes ],
        [ sh:class cacontology-temporal:SuspendedSituation ;
            sh:maxCount 1 ;
            sh:message "ResumptionEvent must terminate exactly one SuspendedSituation."@en ;
            sh:minCount 1 ;
            sh:path cacontology-temporal:terminatesSuspension ] ;
    sh:targetClass cacontology-temporal:ResumptionEvent .