https://unifiedcyberontology.org/ontology/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 | |||
investigation:authorizationIdentifier | owl:DatatypeProperty | The identifier for a particular authorization (e.g. warrant number) | xsd:string |
investigation:authorizationType | owl:DatatypeProperty | A label categorizing a type of authorization (e.g. warrant) | xsd:string |
investigation:exhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at any stage of an investigation to differentiate it from all other objects. | xsd:string |
investigation:focus | owl:DatatypeProperty | Specifies the topical focus of an investigation. | xsd:string |
investigation:investigationForm | owl:DatatypeProperty | A label categorizing a type of investigation (case, incident, suspicious-activity, etc.) | vocab:InvestigationFormVocab |
investigation:investigationStatus | owl:DatatypeProperty | A label characterizing the status of an investigation (open, closed, etc.). | xsd:string |
investigation:relevantAuthorization | owl:ObjectProperty | Specifies an authorization relevant to a particular investigation. | investigation:Authorization |
investigation:rootExhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at the start of its treatment as part of an investigation. The first node in a provenance chain, which can be viewed as a heirarchical tree originating from a single root. | xsd:string |
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.
|
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 |
vocabulary1:TriggerFrequencyVocab
|
vocabulary1: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 |
vocabulary1:TriggerTypeVocab
|
vocabulary1: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 vocabulary1: <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 vocabulary1:TriggerFrequencyVocab ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerFrequency ],
[ sh:datatype vocabulary1:TriggerTypeVocab ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:triggerType ] ;
sh:targetClass observable:TriggerType .