https://ontology.unifiedcyberontology.org/uco/observable/WindowsServiceFacet
A Windows service facet is a grouping of characteristics unique to a specific Windows service (a computer program that operates in the background of a Windows operating system, similar to the way a UNIX daemon runs on UNIX). [based on https://en.wikipedia.org/wiki/Windows_service]
Instances of observable:WindowsServiceFacet can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
types:threadNextItem | owl:ObjectProperty | The link to a next item in a thread. | owl:Thing |
types:threadPreviousItem | owl:ObjectProperty | A direct link to a previous item in a thread. | owl:Thing |
By the associated SHACL property shapes, instances of observable:WindowsServiceFacet can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
observable:WindowsServiceFacet | |||||||
observable:descriptions | owl:DatatypeProperty |
|
xsd:string
|
xsd:string
|
|||
observable:displayName | owl:DatatypeProperty |
Display name specifies the name to display for some entity within a user interface.
|
1 |
xsd:string
|
xsd:string
|
||
observable:groupName | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:serviceName | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:serviceStatus | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:serviceType | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:startCommandLine | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:startType | owl:DatatypeProperty |
|
1 |
xsd:string
|
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 xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:WindowsServiceFacet a owl:Class,
sh:NodeShape ;
rdfs:label "WindowsServiceFacet"@en ;
rdfs:comment "A Windows service facet is a grouping of characteristics unique to a specific Windows service (a computer program that operates in the background of a Windows operating system, similar to the way a UNIX daemon runs on UNIX). [based on https://en.wikipedia.org/wiki/Windows_service]"@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:displayName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:groupName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:serviceName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:serviceStatus ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:serviceType ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:startCommandLine ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:startType ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path observable:descriptions ] ;
sh:targetClass observable:WindowsServiceFacet .