observable:isProtected leaf node


URI

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

Label

isProtected

Description

The isProtected property specifies whether or not the particular memory object is protected (read/write only from the process that allocated it).

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) observable:isProtected xsd:boolean

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:isProtected a owl:DatatypeProperty ;
    rdfs:label "isProtected"@en ;
    rdfs:comment "The isProtected property specifies whether or not the particular memory object is protected (read/write only from the process that allocated it)."@en ;
    rdfs:range xsd:boolean .