@realestate/types
Version:
Types for real estate
181 lines (147 loc) • 3.48 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 PossibleUse {
/**
* The land could be used for agriculture.
*/
Agricultural = 'Agricultural',
/**
* The land could be used for cattle.
*/
Cattle = 'Cattle',
/**
* The land could be used for commercial purposes.
*/
Commercial = 'Commercial',
/**
* The land could be used for a dairy farm.
*/
Dairy = 'Dairy',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Development}
*
* The land could be used for new development.
*/
Development = 'Development',
/**
* The land could be used for a farm.
*/
Farm = 'Farm',
/**
* The land could be used for a fishery.
*/
Fishery = 'Fishery',
/**
* The land could be used for livestock grazing.
*/
Grazing = 'Grazing',
/**
* The land could be used for a highway/tourist service.
*/
HighwayTouristService = 'HighwayTouristService',
/**
* The land could be used for horses.
*/
Horses = 'Horses',
/**
* The land could be used for hunting.
*/
Hunting = 'Hunting',
/**
* The land could be used for industrial purposes.
*/
Industrial = 'Industrial',
/**
* The land could be used as an investment land.
*/
Investment = 'Investment',
/**
* The land could be used for livestock.
*/
Livestock = 'Livestock',
/**
* The land could be used for manufactured home(s).
*/
ManufacturedHome = 'ManufacturedHome',
/**
* The land could be used for mini-storage.
*/
MiniStorage = 'MiniStorage',
/**
* The land could be used for multi-family home(s).
*/
MultiFamily = 'MultiFamily',
/**
* The land could be used for an orchard.
*/
Orchard = 'Orchard',
/**
* The land could be used for a purpose other than those in this list.
*/
Other = 'Other',
/**
* The land could be used as a pasture.
*/
Pasture = 'Pasture',
/**
* The land could be used for place of worship.
*/
PlaceOfWorship = 'PlaceOfWorship',
/**
* The land could be used for poultry.
*/
Poultry = 'Poultry',
/**
* The land could be used as a ranch.
*/
Ranch = 'Ranch',
/**
* The land could be used for recreational purposes.
*/
Recreational = 'Recreational',
/**
* The land could be used for residential purposes.
*/
Residential = 'Residential',
/**
* The land could be used for retail business.
*/
Retail = 'Retail',
/**
* See the Public or Private remarks for details on possible uses for the land.
*/
SeeRemarks = 'SeeRemarks',
/**
* The land could be used for single family residence(s).
*/
SingleFamily = 'SingleFamily',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Subdevelopment}
*
* The land could be used for subdevelopment(s).
*/
Subdevelopment = 'Subdevelopment',
/**
* The land could be used for timber.
*/
Timber = 'Timber',
/**
* The land could be kept undeveloped.
*/
Unimproved = 'Unimproved',
/**
* The land could be kept vacant.
*/
Vacant = 'Vacant',
/**
* The land could be used for warehousing.
*/
Warehouse = 'Warehouse',
}