-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40718cd
commit cbb154b
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
@next/types/schemas/prototypeApplication/enums/HousingProvider.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* @description Other affordable housing provider | ||
*/ | ||
type AffordableHousing = 'affordableHousing'; | ||
|
||
/** | ||
* @description Council delivered build to rent | ||
*/ | ||
type CouncilBuildToRent = 'councilBuildToRent'; | ||
|
||
/** | ||
* @description Council delivery company | ||
*/ | ||
type CouncilDelivery = 'councilDelivery'; | ||
|
||
/** | ||
* @description Housing association | ||
*/ | ||
type HA = 'HA'; | ||
|
||
/** | ||
* @description Local Authority | ||
*/ | ||
type LA = 'LA'; | ||
|
||
/** | ||
* @description Private | ||
*/ | ||
type Private = 'private'; | ||
|
||
/** | ||
* @description Private rented sector | ||
*/ | ||
type PrivateRented = 'privateRented'; | ||
|
||
/** | ||
* @description Other public authority | ||
*/ | ||
type PublicAuthority = 'publicAuthority'; | ||
|
||
/** | ||
* @description Self-build | ||
*/ | ||
type SelfBuild = 'selfBuild'; | ||
|
||
/** | ||
* @id #GLAHousingProvider | ||
* @description Housing provider categories tracked by the Greater London Authority (GLA) | ||
*/ | ||
export type GLAHousingProvider = | ||
| AffordableHousing | ||
| CouncilBuildToRent | ||
| CouncilDelivery | ||
| HA | ||
| LA | ||
| Private | ||
| PrivateRented | ||
| PublicAuthority | ||
| SelfBuild; |