Ontology Version: 2.2.0

cacontology-partnerships-shapes:CommunityAnalysisShape leaf node


URI

https://cacontology.projectvic.org/partnerships/shapes#CommunityAnalysisShape

Label

Community Analysis Shape

Description

Validation shape for community analysis instances.

Shape Properties

Instances of cacontology-partnerships:CommunityAnalysis can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/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-partnerships-shapes:CommunityAnalysisShape a sh:NodeShape ;
    rdfs:label "Community Analysis Shape"@en ;
    rdfs:comment "Validation shape for community analysis instances."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000.0 ;
            sh:message "Volunteer hours must be between 1.0 and 10,000.0."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1.0 ;
            sh:path cacontology-partnerships:volunteerHours ] ;
    sh:targetClass cacontology-partnerships:CommunityAnalysis .