observable:size leaf node


URI

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

Label

size

Description

Specifies the size of the section, in bytes.

Usage

DOMAINPROPERTYRANGE
observable:WindowsPESection observable:size xs:integer

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:size a owl:DatatypeProperty ;
    rdfs:label "size"@en ;
    rdfs:comment "Specifies the size of the section, in bytes."@en ;
    rdfs:domain observable:WindowsPESection ;
    rdfs:range xsd:integer .