observable:exitStatus leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/exitStatus

Label

exitStatus

Description

A small number passed from the process to the parent process when it has finished executing. In general, 0 indicates successful termination, any other number indicates a failure.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:exitStatus xsd:integer

Implementation

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

observable:exitStatus a owl:DatatypeProperty ;
    rdfs:label "exitStatus"@en ;
    rdfs:comment "A small number passed from the process to the parent process when it has finished executing. In general, 0 indicates successful termination, any other number indicates a failure."@en ;
    rdfs:range xsd:integer .