Ontology Version: 2.2.0

cacontology-infrastructure:GeographicDistributionShape leaf node


URI

https://cacontology.projectvic.org/infrastructure#GeographicDistributionShape

Label

Geographic Distribution Shape

Description

Validation shape for geographic distribution instances.

Shape Properties

Instances of cacontology-infrastructure:GeographicDistribution can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-infrastructure:GeographicDistribution
cacontology-infrastructure:geographicLocations 0 1 xsd:nonNegativeInteger
cacontology-infrastructure:PlatformInfrastructure
cacontology-infrastructure:hasInfrastructureBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasInfrastructureEndPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasInfrastructurePerformance 1 xsd:string
cacontology-infrastructure:hasInfrastructureReliability 1 xsd:double
cacontology-infrastructure:hasInfrastructureScalability 1 xsd:string
cacontology-infrastructure:hasInfrastructureVulnerability 1 xsd:string
0 1 xsd:string

Implementation

@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@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-infrastructure:GeographicDistributionShape a sh:NodeShape ;
    rdfs:label "Geographic Distribution Shape"@en ;
    rdfs:comment "Validation shape for geographic distribution instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 200 ;
            sh:message "Geographic locations must be between 1 and 200 when specified."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1 ;
            sh:path cacontology-infrastructure:geographicLocations ] ;
    sh:targetClass cacontology-infrastructure:GeographicDistribution .