Ontology Version: 2.2.0

cacontology-prevention:SecondaryPreventionShape leaf node


URI

https://cacontology.projectvic.org/prevention#SecondaryPreventionShape

Label

Secondary Prevention Shape

Description

Validation shape for secondary prevention instances.

Shape Properties

Instances of cacontology-prevention:SecondaryPrevention can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-prevention:SecondaryPrevention
cacontology-prevention:participantCount 0 1 xsd:nonNegativeInteger
cacontology-prevention:PreventionProgram
cacontology-prevention:participantCount 0 1 xsd:nonNegativeInteger
cacontology-prevention:programDuration 0 1 xsd:decimal
0 1 xsd:dateTime
1 1 xsd:string
1 1 xsd:dateTime

Implementation

@prefix cacontology-prevention: <https://cacontology.projectvic.org/prevention#> .
@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-prevention:SecondaryPreventionShape a sh:NodeShape ;
    rdfs:label "Secondary Prevention Shape"@en ;
    rdfs:comment "Validation shape for secondary prevention instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 100000 ;
            sh:message "Secondary prevention participant count must be between 1 and 100000 when specified."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1 ;
            sh:path cacontology-prevention:participantCount ] ;
    sh:targetClass cacontology-prevention:SecondaryPrevention .