observable:TriggerType leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#TriggerType

Label

TriggerType

Description

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]

Target Classes (1)

Shape Properties

Instances of observable:TriggerType can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:TriggerType
observable:isEnabled 0 1 xsd:boolean
observable:triggerBeginTime 0 1 xsd:dateTime
observable:triggerDelay 0 1 xsd:string
observable:triggerEndTime 0 1 xsd:dateTime
observable:triggerFrequency 0 1 vocabulary1:TriggerFrequencyVocab
observable:triggerMaxRunTime 0 1 xsd:string
observable:triggerSessionChangeType 0 1 xsd:string
observable:triggerType 0 1 vocabulary1:TriggerTypeVocab

Implementation

@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 .