observable:exitStatus leaf node


URI

https://unifiedcyberontology.org/ontology/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
observable:ProcessFacet observable:exitStatus xs:integer

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 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:domain observable:ProcessFacet ;
    rdfs:range xsd:integer .