observable:bitness leaf node


URI

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

Label

bitness

Description

Specifies the bitness of the operating system (i.e. 32 or 64). Note that this is potentially different from the word size of the underlying hardware or CPU. A 32-bit operating system can be installed on a machine running a 64-bit processor.

Usage

DOMAINPROPERTYRANGE
observable:OperatingSystemFacet observable:bitness xs:string

Implementation

@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:bitness a owl:DatatypeProperty ;
    rdfs:label "bitness"@en ;
    rdfs:comment "Specifies the bitness of the operating system (i.e. 32 or 64). Note that this is potentially different from the word size of the underlying hardware or CPU. A 32-bit operating system can be installed on a machine running a 64-bit processor."@en ;
    rdfs:domain observable:OperatingSystemFacet ;
    rdfs:range xsd:string .