Ontology Version: 2.2.0

cacontology-infrastructure:UserAccessPatternAnalysisShape leaf node


URI

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

Label

User Access Pattern Analysis Shape

Description

Validation shape for user access pattern analysis instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-infrastructure:UserAccessPatternAnalysis
cacontology-infrastructure:userGeographicSpread 0 1 xsd:nonNegativeInteger
1 1 xsd:dateTime
cacontology-infrastructure:InfrastructureAnalysis
cacontology-infrastructure:hasAnalysisAccuracy 1 xsd:double
cacontology-infrastructure:hasAnalysisDepth 1 xsd:string
cacontology-infrastructure:hasAnalysisTimeliness 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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-infrastructure:UserAccessPatternAnalysisShape a sh:NodeShape ;
    rdfs:label "User Access Pattern Analysis Shape"@en ;
    rdfs:comment "Validation shape for user access pattern analysis instances."@en ;
    sh:property [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "User access pattern analysis must specify start time."@en ;
            sh:minCount 1 ;
            sh:path uco-core:startTime ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 200 ;
            sh:message "User geographic spread must be between 1 and 200 countries."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1 ;
            sh:path cacontology-infrastructure:userGeographicSpread ] ;
    sh:targetClass cacontology-infrastructure:UserAccessPatternAnalysis .