observable:IShowMessageActionType leaf node


URI

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

Label

IShowMessageActionType

Description

An IShow message action type is a grouping of characteristics unique to an action that shows a message box when a task is activate. [based on https://docs.microsoft.com/en-us/windows/win32/api/taskschd/nn-taskschd-ishowmessageaction?redirectedfrom=MSDN]

Shape Properties

Instances of observable:IShowMessageActionType can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:IShowMessageActionType
observable:showMessageBody 0 1 xsd:string
observable:showMessageTitle 0 1 xsd:string

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 xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:IShowMessageActionType a owl:Class,
        sh:NodeShape ;
    rdfs:label "IShowMessageActionType"@en ;
    rdfs:comment "An IShow message action type is a grouping of characteristics unique to an action that shows a message box when a task is activate. [based on https://docs.microsoft.com/en-us/windows/win32/api/taskschd/nn-taskschd-ishowmessageaction?redirectedfrom=MSDN]"@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:showMessageBody ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:showMessageTitle ] ;
    sh:targetClass observable:IShowMessageActionType .