vocabulary:TaskActionTypeVocab leaf node


URI

https://unifiedcyberontology.org/ontology/uco/vocabulary#TaskActionTypeVocab

Label

Task Action Type Vocabulary

Description

Defines an open-vocabulary of task action types. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa380596(v=vs.85).aspx.

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .

vocabulary:TaskActionTypeVocab a rdfs:Datatype ;
    rdfs:label "Task Action Type Vocabulary"@en-US ;
    rdfs:comment "Defines an open-vocabulary of task action types. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa380596(v=vs.85).aspx."@en ;
    rdfs:subClassOf rdfs:Resource ;
    owl:oneOf ( "TASK_ACTION_COM_HANDLER"^^vocabulary:TaskActionTypeVocab "TASK_ACTION_EXEC"^^vocabulary:TaskActionTypeVocab "TASK_ACTION_SEND_EMAIL"^^vocabulary:TaskActionTypeVocab "TASK_ACTION_SHOW_MESSAGE"^^vocabulary:TaskActionTypeVocab ) .