Ontology Version: 2.2.0

cacontology-specialized:HighVolumeOperationsUnitShape leaf node


URI

https://cacontology.projectvic.org/specialized-units#HighVolumeOperationsUnitShape

Label

High Volume Operations Unit Shape

Description

Validation shape for high volume operations unit instances.

Implementation

@prefix cacontology-specialized: <https://cacontology.projectvic.org/specialized-units#> .
@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-specialized:HighVolumeOperationsUnitShape a sh:NodeShape ;
    rdfs:label "High Volume Operations Unit Shape"@en ;
    rdfs:comment "Validation shape for high volume operations unit instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 10000 ;
            sh:message "High volume unit operational capacity must be between 100 and 10000."@en ;
            sh:minCount 1 ;
            sh:minInclusive 100 ;
            sh:path cacontology-specialized:operationalCapacity ] ;
    sh:targetClass cacontology-specialized:HighVolumeOperationsUnit .