Ontology Version: 2.2.0

cacontology-platforms:MassUserDatabaseShape leaf node


URI

https://cacontology.projectvic.org/platforms#MassUserDatabaseShape

Label

Mass User Database Shape

Description

Validation shape for mass user database instances.

Shape Properties

Instances of cacontology-platforms:MassUserDatabase can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-platforms: <https://cacontology.projectvic.org/platforms#> .
@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-platforms:MassUserDatabaseShape a sh:NodeShape ;
    rdfs:label "Mass User Database Shape"@en ;
    rdfs:comment "Validation shape for mass user database instances."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 100000000 ;
            sh:message "User count must be between 1000 and 100 million for mass databases."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1000 ;
            sh:path cacontology-platforms:userCount ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 3650 ;
            sh:message "Processing timeframe must be between 1 and 3650 days."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1 ;
            sh:path cacontology-platforms:processingTimeframeDays ] ;
    sh:targetClass cacontology-platforms:MassUserDatabase .