observable:sizeOfInitializedData leaf node


URI

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

Label

sizeOfInitializedData

Description

Specifies the size of the initialized data section. If there are multiple such sections, this refers to the sum of the sizes of each section.

Usage

DOMAINPROPERTYRANGE
observable:WindowsPEOptionalHeader observable:sizeOfInitializedData xs:unsignedInt

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:sizeOfInitializedData a owl:DatatypeProperty ;
    rdfs:label "sizeOfInitializedData"@en ;
    rdfs:comment "Specifies the size of the initialized data section. If there are multiple such sections, this refers to the sum of the sizes of each section."@en ;
    rdfs:domain observable:WindowsPEOptionalHeader ;
    rdfs:range xsd:unsignedInt .