action:ActionFrequencyFacet leaf node


URI

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

Label

ActionFrequencyFacet

Description

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

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of action:ActionFrequencyFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

action:ActionFrequencyFacet
action:rate 1 1 xsd:float
action:scale 1 1 xsd:string
action:trend 1 1 vocabulary1:TrendVocab
action:units 1 1 xsd:string

Implementation

@prefix action: <https://unifiedcyberontology.org/ontology/uco/action#> .
@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary1: <https://unifiedcyberontology.org/ontology/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:float ;
            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 vocabulary1:TrendVocab ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path action:trend ] ;
    sh:targetClass action:ActionFrequencyFacet .