bedeo:is_vacant leaf node


URI

https://csse.utoronto.ca/is_vacant

Label

Is vacant

Description

Indicates whether a real estate asset is vacant or not. Note that there are many different interpretations of the term “vacant.” For example, in some cases, vacant could refer to completely undeveloped land, while in other cases, vacant could refer to mostly undeveloped land but may include some minor structures or improvements. For the purposes of this ontology, this property is only used to represent whether the real estate asset is asserted to be vacant or not.

Usage

DOMAINPROPERTYRANGE
bedeo:real_estate_asset bedeo:is_vacant xsd:boolean

Implementation

@prefix bedeo: <https://csse.utoronto.ca/> .
@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#> .

bedeo:is_vacant a owl:DatatypeProperty ;
    rdfs:label "Is vacant"@en ;
    rdfs:comment "Indicates whether a real estate asset is vacant or not.  Note that there are many different interpretations of the term “vacant.” For example, in some cases, vacant could refer to completely undeveloped land, while in other cases, vacant could refer to mostly undeveloped land but may include some minor structures or improvements.  For the purposes of this ontology, this property is only used to represent whether the real estate asset is asserted to be vacant or not."@en ;
    rdfs:domain bedeo:real_estate_asset ;
    rdfs:range xsd:boolean ;
    rdfs:subPropertyOf owl:topDataProperty .