action:ActionFrequencyFacet leaf node


URI

https://ontology.unifiedcyberontology.org/uco/action/ActionFrequencyFacet

Label

ActionFrequencyFacet

Description

An action frequency facet is a grouping of characteristics unique to the frequency of occurrence for an action.

Usage

Instances of action:ActionFrequencyFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
types:threadNextItem owl:ObjectProperty The link to a next item in a thread. owl:Thing
types:threadPreviousItem owl:ObjectProperty A direct link to a previous item in a thread. owl:Thing

Property Shapes

By the associated SHACL property shapes, instances of action:ActionFrequencyFacet can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

LOCAL RANGE
(type range for property on this class)

GLOBAL RANGE
(type range for property globally)

action:ActionFrequencyFacet
action:rate owl:DatatypeProperty The frequency rate for the occurence of an action.
1 1 xsd:decimal
xsd:decimal
action:scale owl:DatatypeProperty The time scale utilized for the frequency rate count for the occurence of an action.
1 1 xsd:string
xsd:string
action:trend owl:DatatypeProperty A characterization of the frequency trend for the occurence of an action.
1 1 vocabulary:TrendVocab
owl:Thing
action:units owl:DatatypeProperty The units of measure utilized for the frequency rate count for the occurence of an action.
1 1 xsd:string
xsd:string

Implementation

@prefix action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

action:ActionFrequencyFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "ActionFrequencyFacet"@en ;
    rdfs:comment "An action frequency facet is a grouping of characteristics unique to the frequency of occurrence for an action."@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:rate ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:scale ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:units ],
        [ sh:datatype vocabulary:TrendVocab ;
            sh:message "Value is outside the default vocabulary TrendVocab." ;
            sh:path action:trend ;
            sh:severity sh:Info ],
        [ sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:or ( [ sh:datatype vocabulary:TrendVocab ] [ sh:datatype xsd:string ] ) ;
            sh:path action:trend ],
        [ sh:message "Value is not member of the vocabulary TrendVocab." ;
            sh:or ( [ sh:datatype vocabulary:TrendVocab ;
                        sh:in ( "Decreasing"^^vocabulary:TrendVocab "Increasing"^^vocabulary:TrendVocab ) ] [ sh:datatype xsd:string ] ) ;
            sh:path action:trend ] ;
    sh:targetClass action:ActionFrequencyFacet .