https://unifiedcyberontology.org/ontology/uco/observable#TriggerType
Instances of observable:TriggerType can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
LOCAL TYPE |
GLOBAL RANGE |
---|---|---|---|---|---|---|---|
observable:TriggerType | |||||||
observable:isEnabled | owl:DatatypeProperty |
Specifies whether the trigger is enabled.
|
0 | 1 |
|
xsd:boolean
|
xsd:boolean
|
observable:triggerBeginTime | owl:DatatypeProperty |
Specifies the date/time that the trigger is activated.
|
0 | 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.
|
0 | 1 |
|
xsd:string
|
xsd:string
|
observable:triggerEndTime | owl:DatatypeProperty |
Specifies the date/time that the trigger is deactivated.
|
0 | 1 |
|
xsd:dateTime
|
xsd:dateTime
|
observable:triggerFrequency | owl:DatatypeProperty |
Specifies the frequency at which the trigger repeats.
|
0 | 1 |
|
vocabulary:TriggerFrequencyVocab
|
vocabulary:TriggerFrequencyVocab
|
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.
|
0 | 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.
|
0 | 1 |
|
xsd:string
|
xsd:string
|
observable:triggerType | owl:DatatypeProperty |
Specifies the type of the task trigger.
|
0 | 1 |
|
vocabulary:TriggerTypeVocab
|
vocabulary:TriggerTypeVocab
|
@prefix observable: <https://unifiedcyberontology.org/ontology/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 vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .
@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 ;
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 vocabulary:TriggerFrequencyVocab ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerFrequency ],
[ sh:datatype vocabulary:TriggerTypeVocab ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerType ] ;
sh:targetClass observable:TriggerType .