https://ontology.unifiedcyberontology.org/uco/observable/ApplicationFacet
An application facet is a grouping of characteristics unique to a particular software program designed for end users.
Instances of observable:ApplicationFacet can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:ApplicationFacet | ||||
observable:applicationIdentifier | 1 |
xsd:string
|
||
observable:installedVersionHistory |
observable:ApplicationVersion
|
|||
observable:numberOfLaunches | 1 |
xsd:integer
|
||
observable:operatingSystem | 1 |
observable:ObservableObject
|
||
observable:version | 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:ApplicationFacet a owl:Class,
sh:NodeShape ;
rdfs:label "ApplicationFacet"@en ;
rdfs:comment "An application facet is a grouping of characteristics unique to a particular software program designed for end users."@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:class observable:ApplicationVersion ;
sh:nodeKind sh:IRI ;
sh:path observable:installedVersionHistory ],
[ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:operatingSystem ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:numberOfLaunches ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:applicationIdentifier ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:version ] ;
sh:targetClass observable:ApplicationFacet .