observable:TriggerType leaf node


URI

https://ontology.unifiedcyberontology.org/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 1 xsd:boolean
observable:triggerBeginTime 1 xsd:dateTime
observable:triggerDelay 1 xsd:string
observable:triggerEndTime 1 xsd:dateTime
observable:triggerFrequency 1 xsd:string
observable:triggerMaxRunTime 1 xsd:string
observable:triggerSessionChangeType 1 xsd:string
observable:triggerType 1 xsd:string

Implementation

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