https://unifiedcyberontology.org/ontology/uco/action#ActionFrequencyFacet
Instances of action:ActionFrequencyFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
TYPE |
---|---|---|---|---|
action:ActionFrequencyFacet | ||||
action:rate | 1 | 1 |
|
xsd:float
|
action:scale | 1 | 1 |
|
xsd:string
|
action:trend | 1 | 1 |
|
vocabulary:TrendVocab
|
action:units | 1 | 1 |
|
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 .