Ontology Version: 2.11.0

cacontology-synthesis-shapes:KeyFindingNumberShape leaf node


URI

https://cacontology.projectvic.org/synthesis/shapes#KeyFindingNumberShape

Label

KeyFinding Number Shape

Shape Properties

Instances of cacontology-synthesis:KeyFinding can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-synthesis:KeyFinding
cacontology-synthesis:findingNumber 1 1 xsd:integer
cacontology-synthesis:Claim
cacontology-synthesis:about
cacontology-synthesis:inReport 1 1 cacontology-synthesis:Report
cacontology-synthesis:supportedByEvidencePointer 1 cacontology-synthesis:TextEvidencePointer

Implementation

@prefix cacontology-synthesis: <https://cacontology.projectvic.org/synthesis#> .
@prefix cacontology-synthesis-shapes: <https://cacontology.projectvic.org/synthesis/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-synthesis-shapes:KeyFindingNumberShape a sh:NodeShape ;
    rdfs:label "KeyFinding Number Shape"@en ;
    sh:property [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:message "KeyFinding must have exactly one findingNumber (positive integer)."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-synthesis:findingNumber ;
            sh:severity sh:Violation ] ;
    sh:targetClass cacontology-synthesis:KeyFinding .