class Realogy::Listing
Public Instance Methods
isActive : Boolean Will be 'true' if this is an Active listing
# File lib/realogy/app/models/realogy/listing.rb, line 601 def active? self.dig_for_boolean("listingSummary", "isActive") end
agents : [Hash] The agent(s) associated with the Listing
# File lib/realogy/app/models/realogy/listing.rb, line 904 def agents self.dig_for_array("listingSummary", "agents") end
agriculturalPropertyNumber : String A unique identifier given for the agriculture property
# File lib/realogy/app/models/realogy/listing.rb, line 141 def agricultural_property_number self.dig_for_string("agriculturalPropertyNumber") end
anchorStores : String The stores within the shopping complex that draw traffic to the location
# File lib/realogy/app/models/realogy/listing.rb, line 148 def anchor_stores self.dig_for_string("anchorStores") end
annualTax : Decimal The annualTax associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 155 def annual_tax self.dig_for_decimal("annualTax") end
availableFloors : Integer The total number of floors available within a property's Listing
# File lib/realogy/app/models/realogy/listing.rb, line 162 def available_floors self.dig_for_integer("availableFloors") end
availableSpace : Decimal The space available in the commercial property
# File lib/realogy/app/models/realogy/listing.rb, line 169 def available_space self.dig_for_decimal("availableSpace") end
averageFloorSize : Decimal The size of the floor in an average. A calculation of the total building area divided by the number of stories or levels within the building
# File lib/realogy/app/models/realogy/listing.rb, line 177 def average_floor_size self.dig_for_decimal("averageFloorSize") end
averageOccupancyRate : Decimal The number of units in a building that have been rented out as compared to the total number of units in the building
# File lib/realogy/app/models/realogy/listing.rb, line 185 def average_occupancy_rate self.dig_for_decimal("averageOccupancyRate") end
bayDepth : String The distance from the front to the back of the bay
# File lib/realogy/app/models/realogy/listing.rb, line 192 def bay_depth self.dig_for_string("bayDepth") end
buildingArea : String BuildingArea of the property
# File lib/realogy/app/models/realogy/listing.rb, line 925 def building_area self.dig_for_string("listingSummary", "buildingArea") end
buildingClass : String The Subjective quality rating of buildings which indicates the competitive ability of each building to attract similar types of tenants
# File lib/realogy/app/models/realogy/listing.rb, line 200 def building_class self.dig_for_string("buildingClass") end
isByAppointmentOnly : Boolean Will be 'true' if a prospective buyer or agent has to contact the Seller to schedule an appoinment to view the Property
# File lib/realogy/app/models/realogy/listing.rb, line 792 def by_appointment_only? self.dig_for_boolean("listingSummary", "isByAppointmentOnly") end
isCallToShow : Boolean Will be 'true' if a prospective buyer or agent has to contact the Seller to schedule an appoinment to view the Property
# File lib/realogy/app/models/realogy/listing.rb, line 770 def call_to_show? self.dig_for_boolean("listingSummary", "isCallToShow") end
capRatePercent : Decimal The capitalization rate on the property in percentage
# File lib/realogy/app/models/realogy/listing.rb, line 207 def cap_rate_percent self.dig_for_decimal("capRatePercent") end
cashFlow : Decimal The amount of cash flow the property brings in if its on sale
# File lib/realogy/app/models/realogy/listing.rb, line 214 def cash_flow self.dig_for_decimal("cashFlow") end
ceilingHeight : String The distance from the floor to the lowest hanging ceiling member or hanging objects of the industrial work area
# File lib/realogy/app/models/realogy/listing.rb, line 222 def ceiling_height self.dig_for_string("ceilingHeight") end
# File lib/realogy/app/models/realogy/listing.rb, line 669 def city self.dig_for_string("listingSummary", "propertyAddress", "city") end
clearance : String The distance from the floor to the lowest hanging ceiling member or hanging objects, beams, joists or truss work descending down into a substantial portion of the industrial work area
# File lib/realogy/app/models/realogy/listing.rb, line 231 def clearance self.dig_for_string("clearance") end
columnSpacing : String The distance between posts or vertical supporting beams in an industrial building
# File lib/realogy/app/models/realogy/listing.rb, line 238 def column_spacing self.dig_for_string("columnSpacing") end
commonAreaFactor : Decimal The shared spaces on a single floor, and within a building in its entirety
# File lib/realogy/app/models/realogy/listing.rb, line 245 def common_area_factor self.dig_for_decimal("commonAreaFactor") end
Array
# File lib/realogy/app/models/realogy/listing.rb, line 5 def company_names return nil if self.agents.nil? self.agents.map{|a| a.dig_for_string("office", "companyName")}.uniq end
# File lib/realogy/app/models/realogy/listing.rb, line 673 def country self.dig_for_string("listingSummary", "propertyAddress", "country") end
# File lib/realogy/app/models/realogy/listing.rb, line 693 def country_code self.dig_for_string("listingSummary", "propertyAddress", "countryCode") end
defaultPhotoURL : String URL to the default photo for the property
# File lib/realogy/app/models/realogy/listing.rb, line 869 def default_photo_url self.dig_for_string("listingSummary", "defaultPhotoURL") end
development : String The name of the Development that the property is located in
# File lib/realogy/app/models/realogy/listing.rb, line 755 def development self.dig_for_string("listingSummary", "development") end
# File lib/realogy/app/models/realogy/listing.rb, line 677 def district self.dig_for_string("listingSummary", "propertyAddress", "district") end
dockHeight : String The amount of distance the height of the slab at the bottom of an overhead door is from the ground level
# File lib/realogy/app/models/realogy/listing.rb, line 252 def dock_height self.dig_for_string("dockHeight") end
downPayment : Decimal The down payment required by the current owner for a commercial listing
# File lib/realogy/app/models/realogy/listing.rb, line 259 def down_payment self.dig_for_decimal("downPayment") end
floors : Array Collection of floors for the property
# File lib/realogy/app/models/realogy/listing.rb, line 557 def floors self.dig_for_array("floors") end
# File lib/realogy/app/models/realogy/listing.rb, line 705 def formatted_address self.dig_for_string("listingSummary", "propertyAddress", "formattedAddress") end
fullBath : Integer Number of full baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 13 def full_bath self.dig_for_integer("fullBath") end
fullyLeasedIncome : Decimal The income that the owner currently receives if the property is fully leased
# File lib/realogy/app/models/realogy/listing.rb, line 266 def fully_leased_income self.dig_for_decimal("fullyLeasedIncome") end
# File lib/realogy/app/models/realogy/listing.rb, line 713 def geocode_confidence_level self.dig_for_string("listingSummary", "propertyAddress", "geoCodeConfidenceLevel") end
geographicRegions : [Hash] A collection of geographic regions associated with the location of the property
# File lib/realogy/app/models/realogy/listing.rb, line 720 def geographic_regions self.dig_for_array("listingSummary", "geographicRegions") end
grossIncome : Decimal The gross income that the owner currently receives if the property is fully leased
# File lib/realogy/app/models/realogy/listing.rb, line 273 def gross_income self.dig_for_decimal("grossIncome") end
isGroundLevel : Boolean The Industrial ground level of the property
# File lib/realogy/app/models/realogy/listing.rb, line 301 def ground_level? self.dig_for_boolean("isGroundLevel") end
halfBath : Integer Number of half baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 20 def half_bath self.dig_for_integer("halfBath") end
isCrossDocks : Boolean Indicates whether the property has the CrossDocks associated with it
# File lib/realogy/app/models/realogy/listing.rb, line 294 def has_cross_docks? self.dig_for_boolean("isCrossDocks") end
# File lib/realogy/app/models/realogy/listing.rb, line 492 def has_open_house? self.open_house.present? end
hasRailAccess : Boolean Indicates whether the property has the industrial rail access to it
# File lib/realogy/app/models/realogy/listing.rb, line 280 def has_rail_access? self.dig_for_boolean("hasRailAccess") end
isSprinkler : Boolean Indicates whether property has the industrial sprinkler to it
# File lib/realogy/app/models/realogy/listing.rb, line 308 def has_sprinkler? self.dig_for_boolean("isSprinkler") end
isHideListPrice : Boolean Will be 'true' if the list price is not supposed to be shown on consumer site
# File lib/realogy/app/models/realogy/listing.rb, line 784 def hide_list_price? self.dig_for_boolean("listingSummary", "isHideListPrice") end
isForAuction : Boolean Will be 'true' if this property is being sold by Auction
# File lib/realogy/app/models/realogy/listing.rb, line 777 def is_for_auction? self.dig_for_boolean("listingSummary", "isForAuction") end
isForeClosure : Boolean Indicates if the property is for foreclosure
# File lib/realogy/app/models/realogy/listing.rb, line 876 def is_foreclosure? self.dig_for_boolean("listingSummary", "isForeClosure") end
isShortSale : Boolean Indicates if the property is for short sale
# File lib/realogy/app/models/realogy/listing.rb, line 883 def is_short_sale? self.dig_for_boolean("listingSummary", "isShortSale") end
lastSoldOn : DateTime Timestamp on which the property is previously sold
# File lib/realogy/app/models/realogy/listing.rb, line 897 def last_sold_on self.dig_for_datetime("lastSoldOn") end
lastUpdateOn : DateTime Timestamp when the listing was last updated at Realogy
system
# File lib/realogy/app/models/realogy/listing.rb, line 890 def last_updated self.dig_for_datetime("listingSummary", "lastUpdateOn") end
# File lib/realogy/app/models/realogy/listing.rb, line 681 def latitude self.dig_for_decimal("listingSummary", "propertyAddress", "latitude") end
TODO EXIST?
# File lib/realogy/app/models/realogy/listing.rb, line 134 def lead_email self.dig_for_string("leadEmail") end
leaseTerm : String Indicates the Measurement. List price or Lease rate or rental value at which the sub unit is available
# File lib/realogy/app/models/realogy/listing.rb, line 322 def lease_term self.dig_for_string("leaseTerm") end
leaseType : String The type of lease for a listing
# File lib/realogy/app/models/realogy/listing.rb, line 329 def lease_type self.dig_for_string("leaseType") end
levels : Integer The number of levels (or storeys) in the Property
# File lib/realogy/app/models/realogy/listing.rb, line 62 def levels self.dig_for_integer("levels") end
TODO EXIST?
# File lib/realogy/app/models/realogy/listing.rb, line 481 def linked_office self.dig_for_hash("linkedOffice") end
listPrice
# File lib/realogy/app/models/realogy/listing.rb, line 643 def list_price self.dig_for_hash("listingSummary", "listPrice") end
# File lib/realogy/app/models/realogy/listing.rb, line 647 def list_price_amount self.dig_for_integer("listingSummary", "listPrice", "amount") end
# File lib/realogy/app/models/realogy/listing.rb, line 651 def list_price_currency_code self.dig_for_string("listingSummary", "listPrice", "currencyCode") end
# File lib/realogy/app/models/realogy/listing.rb, line 655 def list_price_in_usd self.dig_for_integer("listingSummary", "listPrice", "listPriceinUSD") end
listedOn : String The date when the Listing
became active
# File lib/realogy/app/models/realogy/listing.rb, line 623 def listed_on self.dig_for_string("listingSummary", "listedOn") end
listingId : String Globally unique identifier assigned to a listing by Realogy
# File lib/realogy/app/models/realogy/listing.rb, line 594 def listing_id self.dig_for_string("listingSummary", "listingId") end
listingType : String The type of Listings you are interested in. It can be ForSale, ForRent, ForSaleCommercial and ForLeaseCommercial.
# File lib/realogy/app/models/realogy/listing.rb, line 616 def listing_type self.dig_for_string("listingSummary", "listingType") end
listingURL : String Public URL where the listing can be accessed
# File lib/realogy/app/models/realogy/listing.rb, line 748 def listing_url self.dig_for_string("listingSummary", "listingURL") end
loanPayment : Decimal The current loan payment value on the property being paid by the owner
# File lib/realogy/app/models/realogy/listing.rb, line 336 def loan_payment self.dig_for_decimal("loanPayment") end
# File lib/realogy/app/models/realogy/listing.rb, line 685 def longitude self.dig_for_decimal("listingSummary", "propertyAddress", "longitude") end
lotDimension : String The dimensions of the Lot that the property is located in
# File lib/realogy/app/models/realogy/listing.rb, line 55 def lot_dimension self.dig_for_string("lotDimension") end
lotSize : String Lot size of the property
# File lib/realogy/app/models/realogy/listing.rb, line 841 def lot_size self.dig_for_string("listingSummary", "lotSize") end
isAllowMapping : Boolean Indicates whether or not the property address should be displayed on a map
# File lib/realogy/app/models/realogy/listing.rb, line 287 def mapping_allowed? self.dig_for_boolean("isAllowMapping") end
maxContiguousArea : Decimal The largest amount of open space available in a commercial building
# File lib/realogy/app/models/realogy/listing.rb, line 343 def max_contiguous_area self.dig_for_decimal("maxContiguousArea") end
maximumLeaseRate : Decimal The Maximum Lease Rate associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 350 def maximum_lease_rate self.dig_for_decimal("maximumLeaseRate") end
media : Array Collection of media for this property
# File lib/realogy/app/models/realogy/listing.rb, line 527 def media self.dig_for_array("media") end
minDivisibleArea : Decimal The minimum space which can be leased
# File lib/realogy/app/models/realogy/listing.rb, line 357 def min_divisible_area self.dig_for_decimal("minDivisibleArea") end
minimumLeaseRate : Decimal The Minimum Lease Rate associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 364 def minimum_lease_rate self.dig_for_decimal("minimumLeaseRate") end
mlsInformation : Array Collection of MLS information for the property
# File lib/realogy/app/models/realogy/listing.rb, line 578 def mls_information self.dig_for_array("mlsInformation") end
mlsNumbers : [String] A collection of MLS numbers associated with the Listing
# File lib/realogy/app/models/realogy/listing.rb, line 727 def mls_numbers self.dig_for_array("listingSummary", "mlsNumbers") end
netOperatingIncome : Decimal The potential rental income plus other income, less vacancy, credit losses, and operating expenses
# File lib/realogy/app/models/realogy/listing.rb, line 371 def net_operating_income self.dig_for_decimal("netOperatingIncome") end
isNewConstruction : Boolean Will be 'true' if the Property is a new construction
# File lib/realogy/app/models/realogy/listing.rb, line 741 def new_construction? self.dig_for_boolean("listingSummary", "isNewConstruction") end
noOfBedrooms : Integer Number of bedrooms in the property
# File lib/realogy/app/models/realogy/listing.rb, line 848 def no_of_bedrooms self.dig_for_integer("listingSummary", "noOfBedrooms") end
numberOfBallrooms : Integer The number of ballrooms in a property
# File lib/realogy/app/models/realogy/listing.rb, line 385 def number_of_ballrooms self.dig_for_integer("numberOfBallrooms") end
numberOfConferenceRooms : Integer The number of conference rooms in a property
# File lib/realogy/app/models/realogy/listing.rb, line 392 def number_of_conference_rooms self.dig_for_integer("numberOfConferenceRooms") end
numberOfDocks : Integer The Number of Docks associated with the property
# File lib/realogy/app/models/realogy/listing.rb, line 378 def number_of_docks self.dig_for_integer("numberOfDocks") end
occupancyRate : Integer The number of units in a building that have been rented out as compared to the total number of units in the building
# File lib/realogy/app/models/realogy/listing.rb, line 400 def occupancy_rate self.dig_for_integer("occupancyRate") end
openHouse : [Hash] Collection of OpenHouses for the property
# File lib/realogy/app/models/realogy/listing.rb, line 499 def open_house self.dig_for_array("openHouse") end
parkingPlaces : Integer Number of parking places in the property
# File lib/realogy/app/models/realogy/listing.rb, line 48 def parking_places self.dig_for_integer("parkingPlaces") end
parkingRatio : Decimal The ratio of available standard parking spaces to the gross leasable area of a property
# File lib/realogy/app/models/realogy/listing.rb, line 407 def parking_ratio self.dig_for_decimal("parkingRatio") end
partialBath : Integer Number of partial baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 41 def partial_bath self.dig_for_integer("partialBath") end
isPending : Boolean Will be 'true' if this is presently Under Contract (Pending)
# File lib/realogy/app/models/realogy/listing.rb, line 608 def pending? self.dig_for_boolean("listingSummary", "isPending") end
photoCount : Integer Number of photos associated with listing
# File lib/realogy/app/models/realogy/listing.rb, line 630 def photo_count self.dig_for_integer("listingSummary", "photoCount") end
# File lib/realogy/app/models/realogy/listing.rb, line 689 def postal_code self.dig_for_string("listingSummary", "propertyAddress", "postalCode") end
power : String The type and voltage of power applicable for the property
# File lib/realogy/app/models/realogy/listing.rb, line 414 def power self.dig_for_string("power") end
pricePerArea : Decimal The price per area of the property, this is generally the list price divided by the area
# File lib/realogy/app/models/realogy/listing.rb, line 421 def price_per_area self.dig_for_decimal("pricePerArea") end
# File lib/realogy/app/models/realogy/listing.rb, line 659 def price_upon_request? self.dig_for_boolean("listingSummary", "listPrice", "isPriceUponRequest") end
propertyAddress
# File lib/realogy/app/models/realogy/listing.rb, line 665 def property_address self.dig_for_hash("listingSummary", "propertyAddress") end
propertyCategory : String Category of property
# File lib/realogy/app/models/realogy/listing.rb, line 799 def property_category self.dig_for_string("listingSummary", "propertyCategory") end
propertyFeatures : Array Collection of features for the property
# File lib/realogy/app/models/realogy/listing.rb, line 488 def property_features self.dig_for_array("propertyFeatures") end
propertyFees : Array Collection of property fees
# File lib/realogy/app/models/realogy/listing.rb, line 513 def property_fees self.dig_for_array("propertyFees") end
propertyFloors : Array Collection of property floors for the property
# File lib/realogy/app/models/realogy/listing.rb, line 550 def property_floors self.dig_for_array("propertyFloors") end
propertyName : String Name of Property
# File lib/realogy/app/models/realogy/listing.rb, line 827 def property_name self.dig_for_string("listingSummary", "propertyName") end
propertyRooms : Array Collection of propertyRooms for the property
# File lib/realogy/app/models/realogy/listing.rb, line 543 def property_rooms self.dig_for_array("propertyRooms") end
propertyStyle : String Property Style
# File lib/realogy/app/models/realogy/listing.rb, line 813 def property_style self.dig_for_string("listingSummary", "propertyStyle") end
propertyType : String Property Type
# File lib/realogy/app/models/realogy/listing.rb, line 806 def property_type self.dig_for_string("listingSummary", "propertyType") end
propertyUse : String Property Use information of the property
# File lib/realogy/app/models/realogy/listing.rb, line 820 def property_use self.dig_for_string("listingSummary", "propertyUse") end
providerCategory : String The category of the provider of the listing information
# File lib/realogy/app/models/realogy/listing.rb, line 111 def provider_category self.dig_for_string("providerCategory") end
providerKey : String The unique identifier for the listing in the provider's system
# File lib/realogy/app/models/realogy/listing.rb, line 125 def provider_key self.dig_for_string("providerKey") end
providerName : String The name of the provider of the listing information
# File lib/realogy/app/models/realogy/listing.rb, line 104 def provider_name self.dig_for_string("providerName") end
providerURL : String The URL of the provider of the listing information
# File lib/realogy/app/models/realogy/listing.rb, line 118 def provider_url self.dig_for_string("providerURL") end
quarterBath : Integer Number of quarter baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 27 def quarter_bath self.dig_for_integer("quarterBath") end
remarks : Array Collection of remarks for the property
# File lib/realogy/app/models/realogy/listing.rb, line 506 def remarks self.dig_for_array("remarks") end
rentalFrequency : String The frequency at which the Rental amount is to be paid
# File lib/realogy/app/models/realogy/listing.rb, line 762 def rental_frequency self.dig_for_string("listingSummary", "rentalFrequency") end
scheduleIncome : Decimal The gross income that would be collected from a rental property with all units 100% occupied and rented
# File lib/realogy/app/models/realogy/listing.rb, line 428 def schedule_income self.dig_for_decimal("scheduleIncome") end
TODO blank strings in returned hash
# File lib/realogy/app/models/realogy/listing.rb, line 536 def schools self.dig_for_array("schools") end
isShowAddressOnInternet : Boolean Will be 'true' if the property address shall be displayed on Internet
# File lib/realogy/app/models/realogy/listing.rb, line 918 def show_address_on_internet? self.dig_for_boolean("listingSummary", "isShowAddressOnInternet") end
squareFootage : Double Square Footage of the property
# File lib/realogy/app/models/realogy/listing.rb, line 862 def square_footage self.dig_for_decimal("listingSummary", "squareFootage") end
# File lib/realogy/app/models/realogy/listing.rb, line 697 def state_province self.dig_for_string("listingSummary", "propertyAddress", "stateProvince") end
# File lib/realogy/app/models/realogy/listing.rb, line 709 def state_province_code self.dig_for_string("listingSummary", "propertyAddress", "stateProvinceCode") end
# File lib/realogy/app/models/realogy/listing.rb, line 701 def street_address self.dig_for_string("listingSummary", "propertyAddress", "streetAddress") end
isSubLease : Boolean The value indicating whether the listing is a sublease
# File lib/realogy/app/models/realogy/listing.rb, line 315 def sub_lease? self.dig_for_boolean("isSubLease") end
subUnits : Array Collection of sub units for the property
# File lib/realogy/app/models/realogy/listing.rb, line 564 def sub_units self.dig_for_array("subUnits") end
suiteApartmentName : String The Suite Apartment Name associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 435 def suite_apartment_name self.dig_for_string("power") end
suites : Array Collection of sub units/suites for the property
# File lib/realogy/app/models/realogy/listing.rb, line 571 def suites self.dig_for_array("suites") end
taxIdNumber : String The Tax Id Number associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 442 def tax_id_number self.dig_for_string("taxIdNumber") end
taxInformation : Array Tax information associated with the Property
# File lib/realogy/app/models/realogy/listing.rb, line 585 def tax_information self.dig_for_array("taxInformation") end
taxRollNumber : String An identifier for a property within a given jurisdiction, such as a city or county, that can be taxed
# File lib/realogy/app/models/realogy/listing.rb, line 90 def tax_roll_number self.dig_for_string("taxRollNumber") end
taxYear : Integer The year in which tax was calculated
# File lib/realogy/app/models/realogy/listing.rb, line 449 def tax_year self.dig_for_integer("taxYear") end
team : Hash The team associated with the Listing
# File lib/realogy/app/models/realogy/listing.rb, line 911 def team self.dig_for_hash("listingSummary", "team") end
threeQuarterBath : Integer Number of three quarter baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 34 def three_quarter_bath self.dig_for_integer("threeQuarterBath") end
totalAcres : String Total Acres of the property
# File lib/realogy/app/models/realogy/listing.rb, line 855 def total_acres self.dig_for_string("listingSummary", "totalAcres") end
totalBath : Integer Number of partial baths in the property
# File lib/realogy/app/models/realogy/listing.rb, line 834 def total_bath self.dig_for_integer("listingSummary", "totalBath") end
totalExpenses : Decimal The Total Expenses associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 456 def total_expenses self.dig_for_decimal("totalExpenses") end
totalRooms : Integer Number of total rooms in the property
# File lib/realogy/app/models/realogy/listing.rb, line 83 def total_rooms self.dig_for_integer("totalRooms") end
totalUnits : Integer The Total Units associated with the listing
# File lib/realogy/app/models/realogy/listing.rb, line 463 def total_units self.dig_for_integer("totalUnits") end
turningRadius : String The available turning radius available in the industrial property. Turning radius is the size of smallest possible circular turn a vehicle is able to take
# File lib/realogy/app/models/realogy/listing.rb, line 471 def turning_radius self.dig_for_string("turningRadius") end
videoCount : Integer Number of videos associated with listing
# File lib/realogy/app/models/realogy/listing.rb, line 637 def video_count self.dig_for_integer("listingSummary", "videoCount") end
webSites : Array Collection of websites for the property
# File lib/realogy/app/models/realogy/listing.rb, line 520 def websites self.dig_for_array("webSites") end
yearBuilt : String The year in which the property was built
# File lib/realogy/app/models/realogy/listing.rb, line 69 def year_built self.dig_for_integer("yearBuilt") end
yearRenovated : String The year in which the property was last renovated
# File lib/realogy/app/models/realogy/listing.rb, line 76 def year_renovated self.dig_for_integer("yearRenovated") end
zoning : String Property in terms of permitted usage of land based on mapped zones by the authorities
# File lib/realogy/app/models/realogy/listing.rb, line 97 def zoning self.dig_for_string("zoning") end