https://ontology.unifiedcyberontology.org/uco/observable/ProcessFacet
A process facet is a grouping of characteristics unique to an instance of a computer program executed on an operating system.
Instances of observable:ProcessFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:ProcessFacet | ||||
observable:arguments |
xsd:string
|
|||
observable:binary | 1 |
observable:ObservableObject
|
||
observable:creatorUser | 1 |
observable:ObservableObject
|
||
observable:currentWorkingDirectory | 1 |
xsd:string
|
||
observable:environmentVariables | 1 |
types:Dictionary
|
||
observable:exitStatus | 1 |
xsd:integer
|
||
observable:exitTime | 1 |
xsd:dateTime
|
||
observable:isHidden | 1 |
xsd:boolean
|
||
observable:observableCreatedTime | 1 |
xsd:dateTime
|
||
observable:parent | 1 |
observable:ObservableObject
|
||
observable:pid | 1 |
xsd:integer
|
||
observable:status | 1 |
xsd:string
|
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@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 sh: <http://www.w3.org/ns/shacl#> .
@prefix types: <https://ontology.unifiedcyberontology.org/uco/types/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:ProcessFacet a owl:Class,
sh:NodeShape ;
rdfs:label "ProcessFacet"@en ;
rdfs:comment "A process facet is a grouping of characteristics unique to an instance of a computer program executed on an operating system."@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:binary ],
[ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:creatorUser ],
[ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:parent ],
[ sh:class types:Dictionary ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:environmentVariables ],
[ sh:datatype xsd:boolean ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:isHidden ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:exitTime ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:observableCreatedTime ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:exitStatus ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:pid ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:currentWorkingDirectory ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:status ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path observable:arguments ] ;
sh:targetClass observable:ProcessFacet .