https://unifiedcyberontology.org/ontology/uco/action#ActionFrequencyFacet
Instances of action:ActionFrequencyFacet can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
LOCAL TYPE |
GLOBAL RANGE |
---|---|---|---|---|---|---|---|
action:ActionFrequencyFacet | |||||||
action:rate | owl:DatatypeProperty |
The frequency rate for the occurence of an action.
|
1 | 1 |
|
xsd:float
|
xsd:float
|
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
|
vocabulary:TrendVocab
|
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
|
@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 vocabulary: <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 vocabulary:TrendVocab ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path action:trend ] ;
sh:targetClass action:ActionFrequencyFacet .