@realestate/types
Version:
Types for real estate
57 lines (51 loc) • 2.28 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 Levels {
/**
* A split-level home (also called a tri-level home) is a style of house in which the floor levels are
* staggered, so that the "main" level of the house (e.g. the level that usually contains the front entry),
* is partway between the upper and lower floors.
*/
MultiSplit = 'MultiSplit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/One}
*
* The property being sold has one level. A discreet horizontal plane of interior living space (excluding
* basements).
*/
One = 'One',
/**
* {@link https://ddwiki.reso.org/display/DDW17/One+and+One+Half}
*
* A 1.5 story house is where the height of any of the walls on the second floor are less than the height of
* the walls on the first floor. First floor walls that extend up to the second floor level are not
* included in the height comparison. Depending on your State, Provence or other local regulations there
* may be a specific height difference required. For example some areas required that the second floor
* walls be less than 70% the height of the first floor walls in order to be called a 1.5 story structure.
* Other areas are 50% and it is clear that this may vary substantially from region to region. Another
* common trait is angled ceilings that compensate for the short walls making all but the edges of the room
* high enough for normal use.
*/
OneAndOneHalf = 'OneAndOneHalf',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Three+Or+More}
*
* The property being sold has three or more levels. A discreet horizontal plane of interior living space
* (excluding basements).
*/
ThreeOrMore = 'ThreeOrMore',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Two}
*
* The property being sold has two levels. A discreet horizontal plane of interior living space (excluding
* basements).
*/
Two = 'Two',
}