@realestate/types
Version:
Types for real estate
278 lines (235 loc) • 7.96 kB
TypeScript
/**
* 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 Heating {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Active+Solar}
*
* Active solar heating systems use solar energy to heat a fluid - either liquid or air - and then transfer
* the solar heat directly to the interior space or to a storage system for later use.
*/
ActiveSolar = 'ActiveSolar',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Baseboard}
*
* Baseboard heating utilizes convection, as cold air drops from the window, it enters the baseboard heating
* unit where the air is warmed by heating elements, typically fins.
*/
Baseboard = 'Baseboard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Ceiling}
*
* A heating unit that is installed into, or upon the surface, of the ceiling.
*/
Ceiling = 'Ceiling',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Central}
*
* A system where heat is generated in one or more locations in the structure and distributed throughout the
* structure. The term "Central" is commonly understood as distribution done by ducting air. Piping a
* fluid to radiators is also a central type of heating, but this can be clarified with the options
* "Radiator" and "Forced Air".
*/
Central = 'Central',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Coal}
*
* The heating system uses coal as its fuel to generate heat.
*/
Coal = 'Coal',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Coal+Stove}
*
* A coal burning stove that is used for heat.
*/
CoalStove = 'CoalStove',
/**
* The heating system does not have ducting like that found in central forced air systems.
*/
Ductless = 'Ductless',
/**
* A heating system that utilizes electricity and heating elements, such as coils or fins, to generate heat.
*/
Electric = 'Electric',
/**
* The heating system installation was done by an ENERGY STAR or ACCA RSI qualified contractor.
*/
EnergyStarAccaRsiQualifiedInstallation = 'EnergyStarAccaRsiQualifiedInstallation',
/**
* The heating system is ENERGY STAR Qualified. Specific performance information must be determined by
* review of the actual unit.
*/
EnergyStarQualifiedEquipment = 'EnergyStarQualifiedEquipment',
/**
* The property has an exhaust fan.
*/
ExhaustFan = 'ExhaustFan',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fireplace+Insert}
*
* The property has a fireplace insert for generating heat.
*/
FireplaceInsert = 'FireplaceInsert',
/**
* The property has one or more fireplaces used to generate heat.
*/
Fireplaces = 'Fireplaces',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Floor+Furnace}
*
* A radiant heating system that is mounted into the floor and distributes the heat via convection.
*/
FloorFurnace = 'FloorFurnace',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Forced+Air}
*
* The property has a forced air system, typically via ducting throughout the structure.
*/
ForcedAir = 'ForcedAir',
/**
* A geothermal heating system, also known as a ground source heat pump, transfers heat from below ground
* into the structure.
*/
Geothermal = 'Geothermal',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gravity}
*
* A gravity heating system, also known as an octopus furnace, is typically a ducted system that doesn't use
* a fan, but rather is designed to allow the heat to rise naturally thought the ducts to the different
* areas of the structure.
*/
Gravity = 'Gravity',
/**
* A system that exchanges heat between a warm and cool space. The heat exchange is done between the
* dwelling and another air space, like outdoors; or a water source; or below ground (geothermal).
*/
HeatPump = 'HeatPump',
/**
* The heating system uses a boiler and pipes to deliver hot water to radiators throughout the dwelling.
*/
HotWater = 'HotWater',
/**
* The heating system has humidity control.
*/
HumidityControl = 'HumidityControl',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Kerosene}
*
* The heating system uses kerosene as its fuel to generate heat.
*/
Kerosene = 'Kerosene',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Natural+Gas}
*
* The heating system uses natural gas as its fuel to generate heat.
*/
NaturalGas = 'NaturalGas',
/**
* The property does not have a heating system.
*/
None = 'None',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Oil}
*
* The heating system uses oil as its fuel to generate heat.
*/
Oil = 'Oil',
/**
* The property has a heating system or features that are not included in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Passive+Solar}
*
* Passive solar is a building design where the walls, windows, floors, etc., are made to collect heat and
* warm the dwelling.
*/
PassiveSolar = 'PassiveSolar',
/**
* The property has a stove that burns compressed wood or biomass pellets to generate heat.
*/
PelletStove = 'PelletStove',
/**
* The heating system uses propane as its fuel to generate heat.
*/
Propane = 'Propane',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Propane+Stove}
*
* The property has a stove that burns propane to generate heat.
*/
PropaneStove = 'PropaneStove',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Radiant}
*
* The heating system uses radiators to release heat within the dwelling. The heat is typically delivered
* to the radiator(s) by water/steam or electricity.
*/
Radiant = 'Radiant',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Radiant+Ceiling}
*
* The radiant heating element(s) are located in the ceiling.
*/
RadiantCeiling = 'RadiantCeiling',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Radiant+Floor}
*
* The radiant heating element(s) are located in the floor.
*/
RadiantFloor = 'RadiantFloor',
/**
* See the remarks fields for additional information about the heating system included with the property.
*/
SeeRemarks = 'SeeRemarks',
/**
* The heating system has multiple units and/or is zoned with separate meters for each zone/unit.
*/
SeparateMeters = 'SeparateMeters',
/**
* The property has a heating system or method that uses an unspecified type of solar heating.
*/
Solar = 'Solar',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Space+Heater}
*
* The property comes with a stand-alone space heater.
*/
SpaceHeater = 'SpaceHeater',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Steam}
*
* The heating system uses a boiler and pipes to deliver hot water to radiators throughout the dwelling.
*/
Steam = 'Steam',
/**
* The type of heating or heating features vary from unit to unit.
*/
VariesByUnit = 'VariesByUnit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wall+Furnace}
*
* Typically a ductless system that is built into a wall to deliver to the room in which it's installed.
*/
WallFurnace = 'WallFurnace',
/**
* The heating system uses wood as its fuel to generate heat.
*/
Wood = 'Wood',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wood+Stove}
*
* The property has a stove that burns wood to generate heat.
*/
WoodStove = 'WoodStove',
/**
* The heating system is zoned allowing for indepenant control of two or more parts of the structure.
*/
Zoned = 'Zoned',
}