UNPKG

@realestate/types

Version:

Types for real estate

187 lines (164 loc) 7.11 kB
/** * Copyright (c) 2023 ListBird. All Rights Reserved. * * This software product includes software or other works developed by RESO, * subject to the RESO End User License published at www.reso.org. * * Any modifications, derivative works, or redistributions of this source must * maintain this copyright notice. See the RESO EULA for more information. */ export enum Electric { /** * {@link https://ddwiki.reso.org/display/DDW17/100+Amp+Service} * * The electrical features of the property include 100 amp service. */ Amps100 = 'Amps100', /** * {@link https://ddwiki.reso.org/display/DDW17/150+Amp+Service} * * The electrical features of the property include 150 amp service. */ Amps150 = 'Amps150', /** * The electrical features of the property include 200+ amp service. */ Amps200OrMore = 'Amps200OrMore', /** * {@link https://ddwiki.reso.org/display/DDW17/Circuit+Breakers} * * The electrical features of the property include circuit breakers. */ CircuitBreakers = 'CircuitBreakers', /** * {@link https://ddwiki.reso.org/display/DDW17/Energy+Storage+Device} * * Device(s) that capture energy at one time to be used at a later time. Most commonly these refer to * single or groups of stand-alone batteries, such as could be used as back-up power, but it also might * include flywheels or other devices to store power. */ EnergyStorageDevice = 'EnergyStorageDevice', /** * {@link https://ddwiki.reso.org/display/DDW17/Fuses} * * The electrical features of the property include fuses. */ Fuses = 'Fuses', /** * {@link https://ddwiki.reso.org/display/DDW17/Generator} * * The electrical features of the property include generator. */ Generator = 'Generator', /** * {@link https://ddwiki.reso.org/display/DDW17/Net+Meter} * * Net metering is an electric service that allows electricity generated on a consumer’s site (“on-site”) to * offset that consumer’s use. This generation can include (generally small) renewable energy facilities * (such as wind, solar power, fuel cells or hydro). Net meters might also be used with energy storage * devices such as batteries (stand alone or for electric vehicles). Net meters can “spin backwards” such * that at the end of the billing period, the consumer only pays for its use, less what it produced (i.e., * the “net”). */ NetMeter = 'NetMeter', /** * {@link https://ddwiki.reso.org/display/DDW17/Photovoltaics+Seller+Owned} * * The electrical features of the property include a solar photovoltaic system that is owned by the seller. */ PhotovoltaicsSellerOwned = 'PhotovoltaicsSellerOwned', /** * {@link https://ddwiki.reso.org/display/DDW17/Photovoltaics+Third-Party+Owned} * * The electrical features of the property include a solar photovoltaic system owned by a third party. This * is typically a lease but may be some other arrangement where the property owner does not own the * photovoltaic system. */ PhotovoltaicsThirdPartyOwned = 'PhotovoltaicsThirdPartyOwned', /** * {@link https://ddwiki.reso.org/display/DDW17/Pre-Wired+for+Renewables} * * Indicates the electric infrastructure on the property has been extended to more easily incorporate an * on-site electric generation facility in the future. This would often include, for example, installing * conduit and wire from the generation facility to the electric panel, designating circuits on the panel * for that generation, and/or leaving room near the panel for future components, such as an inverter. */ PreWiredForRenewables = 'PreWiredForRenewables', /** * {@link https://ddwiki.reso.org/display/DDW17/Ready+for+Renewables} * * Indicates a comprehensive infrastructure is in place on the property to more easily incorporate an * on-site electric generation facility in the future. Can be confirmed via supporting documentation such as * a checklist provided by the DOE Zero Energy Ready Homes program. Solar-PV ready, for example, would often * include extensive efficiency measures such as insulation and appliances, architectural drawings that * design for a clear roof space, installing conduit from the attic to the electric panel, dedicated * circuits on the electric panel, and leaving room near the panel for future components of a solar electric * system, such as an inverter. Local requirements may vary. (source: DOE Zero Energy Ready Home * http://energy.gov/sites/prod/files/2015/05/f22/PV-Ready%20Checklist.pdf ) */ ReadyForRenewables = 'ReadyForRenewables', /** * {@link https://ddwiki.reso.org/display/DDW17/Underground} * * The electrical features of the property include underground. */ Underground = 'Underground', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts} * * The electrical features of the property include 220 volts. */ Volts220 = 'Volts220', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts+For+Spa} * * The electrical features of the property include 220 volts for spa. */ Volts220ForSpa = 'Volts220ForSpa', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts+in+Garage} * * The electrical features of the property include 220 volts in garage. */ Volts220InGarage = 'Volts220InGarage', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts+in+Kitchen} * * The electrical features of the property include 220 volts in kitchen. */ Volts220InKitchen = 'Volts220InKitchen', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts+in+Laundry} * * The electrical features of the property include 220 volts in laundry. */ Volts220InLanudry = 'Volts220InLanudry', /** * {@link https://ddwiki.reso.org/display/DDW17/220+Volts+in+Workshop} * * The electrical features of the property include 220 volts in workshop. */ Volts220InWorkshop = 'Volts220InWorkshop', /** * {@link https://ddwiki.reso.org/display/DDW17/440+Volts} * * The electrical features of the property include 440 volts. */ Volts440 = 'Volts440', /** * {@link https://ddwiki.reso.org/display/DDW17/Wind+Turbine+Seller+Owned} * * A wind turbine is provided on the property to generate electricity. Seller owned turbines are typically * considered real property and can be transferred with the property. */ WindTurbineSellerOwned = 'WindTurbineSellerOwned', /** * {@link https://ddwiki.reso.org/display/DDW17/Wind+Turbine+Third-Party+Owned} * * A wind turbine is provided on the property to generate electricity. The homeowner enters a lease * agreement with the owner of the wind turbine(s). Third-Party Owned turbines indicate a lease or a Power * Purchase Agreement (PPA) exists. The lease/PPA can often be transferred but the financing company has to * agree. See CurrentFinancing field for important further definition of these models. */ WindTurbineThirdPartyOwned = 'WindTurbineThirdPartyOwned', }