observable:WindowsComputerSpecificationFacet leaf node


URI

https://unifiedcyberontology.org/ontology/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]

Superclasses (1)

Usage

Instances of observable:WindowsComputerSpecificationFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
investigation:authorizationIdentifier owl:DatatypeProperty The identifier for a particular authorization (e.g. warrant number) xsd:string
investigation:authorizationType owl:DatatypeProperty A label categorizing a type of authorization (e.g. warrant) xsd:string
investigation:exhibitNumber owl:DatatypeProperty Specifies a unique identifier assigned to a given object at any stage of an investigation to differentiate it from all other objects. xsd:string
investigation:focus owl:DatatypeProperty Specifies the topical focus of an investigation. xsd:string
investigation:investigationForm owl:DatatypeProperty A label categorizing a type of investigation (case, incident, suspicious-activity, etc.) vocab:InvestigationFormVocab
investigation:investigationStatus owl:DatatypeProperty A label characterizing the status of an investigation (open, closed, etc.). xsd:string
investigation:relevantAuthorization owl:ObjectProperty Specifies an authorization relevant to a particular investigation. investigation:Authorization
investigation:rootExhibitNumber owl:DatatypeProperty Specifies a unique identifier assigned to a given object at the start of its treatment as part of an investigation. The first node in a provenance chain, which can be viewed as a heirarchical tree originating from a single root. xsd:string

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.
0 * 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.
0 * observable:GlobalFlagType
observable:GlobalFlagType
observable:msProductID owl:DatatypeProperty The Microsoft Product ID. See also: http://support.microsoft.com/gp/pidwin.
0 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.
0 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.
0 1 xsd:string
xsd:string
observable:registeredOrganization owl:ObjectProperty The organization that this copy of Windows is registered to.
0 1 identity:Identity
identity:Identity
observable:registeredOwner owl:ObjectProperty The person or organization that is the registered owner of this copy of Windows.
0 1 identity:Identity
identity:Identity
observable:windowsDirectory owl:ObjectProperty The Windows_Directory field specifies the fully-qualified path to the Windows install directory.
0 1 observable:ObservableObject
observable:ObservableObject
observable:windowsSystemDirectory owl:ObjectProperty The Windows_System_Directory field specifies the fully-qualified path to the Windows system directory.
0 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.
0 1 observable:ObservableObject
observable:ObservableObject

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix identity: <https://unifiedcyberontology.org/ontology/uco/identity#> .
@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 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:BlankNodeOrIRI ;
            sh:path observable:registeredOrganization ],
        [ sh:class identity:Identity ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:registeredOwner ],
        [ sh:class observable:GlobalFlagType ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:globalFlagList ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:windowsDirectory ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:windowsSystemDirectory ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:windowsTempDirectory ],
        [ 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 .