UNPKG

@realestate/types

Version:

Types for real estate

197 lines (168 loc) 5.42 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 PropertySubType { /** * The property is for farming and agricultural activities. */ Agriculture = 'Agriculture', /** * {@link https://ddwiki.reso.org/display/DDW17/Apartment} * * A unit within a wholly owned structure of 5 or more units. This may not be used for Residential or * Residential Income. For Residential use Condo. For Income used Residential Income. */ Apartment = 'Apartment', /** * {@link https://ddwiki.reso.org/display/DDW17/Boat+Slip} * * A place where you can tie up a boat or house boat. */ BoatSlip = 'BoatSlip', /** * The property is designed for any type of business. */ Business = 'Business', /** * {@link https://ddwiki.reso.org/display/DDW17/Cabin} * * A single family residence that may have limited utilities. */ Cabin = 'Cabin', /** * {@link https://ddwiki.reso.org/display/DDW17/Condominium} * * A unit within a structure where ownership is on a unit by unit basis. */ Condominium = 'Condominium', /** * {@link https://ddwiki.reso.org/display/DDW17/Deeded+Parking} * * A parking space (or spaces) that are owned and separate from a residence. */ DeededParking = 'DeededParking', /** * {@link https://ddwiki.reso.org/display/DDW17/Duplex} * * A multi family structure with two independent units with a shared wall or ceiling/floor. */ Duplex = 'Duplex', /** * A place where agricultural and similar activities take place, especially the growing of crops. */ Farm = 'Farm', /** * {@link https://ddwiki.reso.org/display/DDW17/Hotel-Motel} * * The property is designed for hotel or motel use. */ HotelMotel = 'HotelMotel', /** * The property is designed for industrial use. */ Industrial = 'Industrial', /** * {@link https://ddwiki.reso.org/display/DDW17/Manufactured+Home} * * A factory built house that is transported to the lot. */ ManufacturedHome = 'ManufacturedHome', /** * {@link https://ddwiki.reso.org/display/DDW17/Manufactured+On+Land} * * A factory built house that is transported to the lot and sold with the land. The property may or may not * have a 433a certification. */ ManufacturedOnLand = 'ManufacturedOnLand', /** * {@link https://ddwiki.reso.org/display/DDW17/Mixed+Use} * * The property is designed be used in more than one way. i.e. Office and Retail. */ MixedUse = 'MixedUse', /** * {@link https://ddwiki.reso.org/display/DDW17/Mobile+Home} * * A factory built house that is transported to the lot, retains axles and was built prior to June 15, 1976. */ MobileHome = 'MobileHome', /** * {@link https://ddwiki.reso.org/display/DDW17/Multi+Family} * * A structure or complex with 5 or more units that are individual dwellings. */ MultiFamily = 'MultiFamily', /** * The property is designed to be used as office space. */ Office = 'Office', /** * {@link https://ddwiki.reso.org/display/DDW17/Own+Your+Own} * * A unit within a structure where ownership is based on a partial deed and rights to occupy a unit. */ OwnYourOwn = 'OwnYourOwn', /** * {@link https://ddwiki.reso.org/display/DDW17/Quadruplex} * * A multi family structure with four independent units with shared walls or ceilings/floors. */ Quadruplex = 'Quadruplex', /** * {@link https://ddwiki.reso.org/display/DDW17/Ranch} * * A place where agricultural and similar activities take place, especially the raising of livestock. */ Ranch = 'Ranch', /** * The property designed to be used as retail space. */ Retail = 'Retail', /** * {@link https://ddwiki.reso.org/display/DDW17/Single+Family+Residence} * * A single family residence on real property. */ SingleFamilyResidence = 'SingleFamilyResidence', /** * {@link https://ddwiki.reso.org/display/DDW17/Stock+Cooperative} * * A unit within a structure where ownership is based on a share of stock and rights to occupy a unit. */ StockCooperative = 'StockCooperative', /** * {@link https://ddwiki.reso.org/display/DDW17/Timeshare} * * A form of property ownership under with a property is held by a number of people, each with the right of * possession for a specified time interval. */ Timeshare = 'Timeshare', /** * {@link https://ddwiki.reso.org/display/DDW17/Townhouse} * * A dwelling unit, generally having two or more floors and attached to other similar units via party walls. */ Townhouse = 'Townhouse', /** * {@link https://ddwiki.reso.org/display/DDW17/Triplex} * * A multi family structure with three independent units with shared walls or ceilings/floors. */ Triplex = 'Triplex', /** * {@link https://ddwiki.reso.org/display/DDW17/Unimproved+Land} * * Commercial land that has not been built upon or improved. */ UnimprovedLand = 'UnimprovedLand', /** * The property is designed to be used for warehousing. */ Warehouse = 'Warehouse', }