observable:ProcessFacet leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#ProcessFacet

Label

ProcessFacet

Description

A process facet is a grouping of characteristics unique to an instance of a computer program executed on an operating system.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of observable:ProcessFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:ProcessFacet
observable:arguments 0 * xsd:string
observable:binary 0 1 observable:ObservableObject
observable:creatorUser 0 1 observable:ObservableObject
observable:currentWorkingDirectory 0 1 xsd:string
observable:environmentVariables 0 1 types:Dictionary
observable:exitStatus 0 1 xsd:integer
observable:exitTime 0 1 xsd:dateTime
observable:isHidden 0 1 xsd:boolean
observable:observableCreatedTime 0 1 xsd:dateTime
observable:parent 0 1 observable:ObservableObject
observable:pid 0 1 xsd:integer
observable:status 0 1 xsd:string

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@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 sh: <http://www.w3.org/ns/shacl#> .
@prefix types: <https://unifiedcyberontology.org/ontology/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:BlankNodeOrIRI ;
            sh:path observable:binary ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:creatorUser ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:parent ],
        [ sh:class types:Dictionary ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            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 .