vocabulary:UnixProcessStateVocab leaf node


URI

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

Label

UNIX Process State Vocabulary

Description

Defines an open-vocabulary of Unix process states

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:UnixProcessStateVocab a rdfs:Datatype ;
    rdfs:label "UNIX Process State Vocabulary"@en-US ;
    rdfs:comment "Defines an open-vocabulary of Unix process states"@en ;
    rdfs:subClassOf rdfs:Resource ;
    owl:oneOf ( "Dead"^^vocabulary:UnixProcessStateVocab "InterruptibleSleep"^^vocabulary:UnixProcessStateVocab "Paging"^^vocabulary:UnixProcessStateVocab "Running"^^vocabulary:UnixProcessStateVocab "Stopped"^^vocabulary:UnixProcessStateVocab "UninterruptibleSleep"^^vocabulary:UnixProcessStateVocab "Zombie"^^vocabulary:UnixProcessStateVocab ) .