observable:WindowsComputerSpecificationFacet leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/WindowsComputerSpecificationFacet

Label

WindowsComputerSpecificationFacet

Description

A Windows computer specification facet is a grouping of characteristics unique to the hardware and software of a programmable electronic device that can store, retrieve, and process data running a Microsoft Windows operating system. [based on merriam-webster.com/dictionary/computer]

Usage

Instances of observable:WindowsComputerSpecificationFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
core:informalType owl:DatatypeProperty Informal Type serves as a parent property for string-valued properties meant to describe a type without implementing a class design. This property hierarchy supports a balancing point between semantic specificity and operational agility. The known benefits of describing types rather than implementing them include swift extensibility of some existing, or possibly non-existing, subclass hierarchy in UCO without requiring training in ontological development, taxonomic specification, or OWL, SHACL, or RDF maintenance logistics. The known detractions of using string-literals for type descriptions include that used vocabularies may require careful maintenance among data-sharing parties; that vocabularies require independent logistics (external to UCO) for providing definitions (i.e., dictionary-style semantics) to string-literals chosen; and that string-literals cannot by themselves encode hierarchical structure or entailments, such as the informal device type string 'ExamplePhone 8 P4321' entailing 'ExamplePhone 8', 'ExamplePhone', or 'ExamplePhone models discontinued in 2020'. Usage of Informal Type to house strings should be weighed against usage of classes when classes are available, and should periodically be reviewed for potential additions to UCO's class hierarchy or downstream extensions thereof. 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

Property Shapes

By the associated SHACL property shapes, instances of observable:WindowsComputerSpecificationFacet can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

LOCAL RANGE
(type range for property on this class)

GLOBAL RANGE
(type range for property globally)

observable:WindowsComputerSpecificationFacet
observable:domain owl:DatatypeProperty The domain(s) that the system belongs to.
xsd:string
xsd:string
observable:globalFlagList owl:ObjectProperty A list of global flags. See also: http://msdn.microsoft.com/en-us/library/windows/hardware/ff549557(v=vs.85).aspx.
observable:GlobalFlagType
observable:GlobalFlagType
observable:lastShutdownDate owl:DatatypeProperty Specifies the date on which the device was last shutdown.
1 xsd:dateTime
xsd:dateTime
observable:msProductID owl:DatatypeProperty The Microsoft Product ID. See also: http://support.microsoft.com/gp/pidwin.
1 xsd:string
xsd:string
observable:msProductName owl:DatatypeProperty The Microsoft ProductName of the current installation of Windows. This is typically found in HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion!ProductName.
1 xsd:string
xsd:string
observable:netBIOSName owl:DatatypeProperty Specifies the NetBIOS (Network Basic Input/Output System) name of the Windows system. This is not the same as the host name.
1 xsd:string
xsd:string
observable:osInstallDate owl:DatatypeProperty Specifies the date on which the operating system (OS) was installed.
1 xsd:dateTime
xsd:dateTime
observable:osLastUpgradeDate owl:DatatypeProperty Specifies the date on which the operating system (OS) was last upgraded.
1 xsd:dateTime
xsd:dateTime
observable:registeredOrganization owl:ObjectProperty The organization that this copy of Windows is registered to.
1 identity:Identity
identity:Identity
observable:registeredOwner owl:ObjectProperty The person or organization that is the registered owner of this copy of Windows.
1 identity:Identity
identity:Identity
observable:windowsDirectory owl:ObjectProperty The Windows_Directory field specifies the fully-qualified path to the Windows install directory.
1 observable:ObservableObject
observable:ObservableObject
observable:windowsSystemDirectory owl:ObjectProperty The Windows_System_Directory field specifies the fully-qualified path to the Windows system directory.
1 observable:ObservableObject
observable:ObservableObject
observable:windowsTempDirectory owl:ObjectProperty The Windows_Temp_Directory field specifies the fully-qualified path to the Windows temporary files directory.
1 observable:ObservableObject
observable:ObservableObject

Implementation

@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@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:WindowsComputerSpecificationFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "WindowsComputerSpecificationFacet"@en ;
    rdfs:comment "A Windows computer specification facet is a grouping of characteristics unique to the hardware and software of a programmable electronic device that can store, retrieve, and process data running a Microsoft Windows operating system. [based on merriam-webster.com/dictionary/computer]"@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class identity:Identity ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:registeredOrganization ],
        [ sh:class identity:Identity ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:registeredOwner ],
        [ sh:class observable:GlobalFlagType ;
            sh:nodeKind sh:IRI ;
            sh:path observable:globalFlagList ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:windowsDirectory ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:windowsSystemDirectory ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:windowsTempDirectory ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:lastShutdownDate ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:osInstallDate ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:osLastUpgradeDate ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:msProductID ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:msProductName ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:netBIOSName ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path observable:domain ] ;
    sh:targetClass observable:WindowsComputerSpecificationFacet .