https://ontology.unifiedcyberontology.org/uco/observable/TriggerType
A trigger type is a grouping of characterizes unique to a set of criteria that, when met, starts the execution of a task within a Windows operating system. [based on https://docs.microsoft.com/en-us/windows/win32/taskschd/task-triggers]
Instances of observable:TriggerType can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
core:informalType | owl:DatatypeProperty | Informal Type serves as a parent property for string-valued properties meant to describe a type without implementing a class design. This property hierarchy supports a balancing point between semantic specificity and operational agility. The known benefits of describing types rather than implementing them include swift extensibility of some existing, or possibly non-existing, subclass hierarchy in UCO without requiring training in ontological development, taxonomic specification, or OWL, SHACL, or RDF maintenance logistics. The known detractions of using string-literals for type descriptions include that used vocabularies may require careful maintenance among data-sharing parties; that vocabularies require independent logistics (external to UCO) for providing definitions (i.e., dictionary-style semantics) to string-literals chosen; and that string-literals cannot by themselves encode hierarchical structure or entailments, such as the informal device type string 'ExamplePhone 8 P4321' entailing 'ExamplePhone 8', 'ExamplePhone', or 'ExamplePhone models discontinued in 2020'. Usage of Informal Type to house strings should be weighed against usage of classes when classes are available, and should periodically be reviewed for potential additions to UCO's class hierarchy or downstream extensions thereof. | 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 |
By the associated SHACL property shapes, instances of observable:TriggerType can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
observable:TriggerType | |||||||
observable:isEnabled | owl:DatatypeProperty |
Specifies whether the trigger is enabled.
|
1 |
xsd:boolean
|
xsd:boolean
|
||
observable:triggerBeginTime | owl:DatatypeProperty |
Specifies the date/time that the trigger is activated.
|
1 |
xsd:dateTime
|
xsd:dateTime
|
||
observable:triggerDelay | owl:DatatypeProperty |
Specifies the delay that takes place between when the task is registered and when the task is started.
|
1 |
xsd:string
|
xsd:string
|
||
observable:triggerEndTime | owl:DatatypeProperty |
Specifies the date/time that the trigger is deactivated.
|
1 |
xsd:dateTime
|
xsd:dateTime
|
||
observable:triggerFrequency | owl:DatatypeProperty |
Specifies the frequency at which the trigger repeats.
|
1 |
xsd:string
|
owl:Thing | ||
observable:triggerMaxRunTime | owl:DatatypeProperty |
The maximum amount of time that the task launched by the trigger is allowed to run. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa383868(v=vs.85).aspx.
|
1 |
xsd:string
|
xsd:string
|
||
observable:triggerSessionChangeType | owl:DatatypeProperty |
Specifies the type of Terminal Server session change that would trigger a task launch. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381298(v=vs.85).aspx.
|
1 |
xsd:string
|
xsd:string
|
||
observable:triggerType | owl:DatatypeProperty |
Specifies the type of the task trigger.
|
1 |
xsd:string
|
owl:Thing |
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:TriggerType a owl:Class,
sh:NodeShape ;
rdfs:label "TriggerType"@en ;
rdfs:comment "A trigger type is a grouping of characterizes unique to a set of criteria that, when met, starts the execution of a task within a Windows operating system. [based on https://docs.microsoft.com/en-us/windows/win32/taskschd/task-triggers]"@en ;
rdfs:subClassOf core:UcoInherentCharacterizationThing ;
sh:property [ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:isEnabled ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerBeginTime ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerEndTime ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerDelay ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerMaxRunTime ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerSessionChangeType ],
[ sh:datatype xsd:string ;
sh:message "As of UCO 1.4.0, the datatype to use for observable:triggerFrequency should be xsd:string. Not using xsd:string will be an error in UCO 2.0.0." ;
sh:path observable:triggerFrequency ;
sh:severity sh:Warning ],
[ sh:datatype xsd:string ;
sh:message "As of UCO 1.4.0, the datatype to use for observable:triggerType should be xsd:string. Not using xsd:string will be an error in UCO 2.0.0." ;
sh:path observable:triggerType ;
sh:severity sh:Warning ],
[ sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerFrequency ],
[ sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerType ],
observable:TriggerType-triggerFrequency-in-shape,
observable:TriggerType-triggerType-in-shape ;
sh:targetClass observable:TriggerType .