Skip to content

Commit

Permalink
chore: GLAUseClass enum (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr authored Jul 31, 2024
1 parent f7dd380 commit ffb551f
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions types/schemas/prototypeApplication/enums/UseClass.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/**
* @description B2 - General industry
*/
type BTwo = 'bTwo';

/**
* @description B8 - Storage and distribution
*/
type BEight = 'bEight';

/**
* @description C1 - Hotels
*/
type COne = 'cOne';

/**
* @description C2 - Residential institutions
*/
type CTwo = 'cTwo';

/**
* @description C2a - Secure residential institutions
*/
type CTwoA = 'cTwoA';

/**
* @description C3 - Dwellinghouses
*/
type CThree = 'cThree';

/**
* @description C4 - Houses in multiple occupation (HMOs)
*/
type CFour = 'cFour';

/**
* @description E - Commercial, business and service
*/
type E = 'e';

/**
* @description F1 - Learning and non-residential institutions
*/
type FOne = 'fOne';

/**
* @description F2 - Local community uses
*/
type FTwo = 'fTwo';

/**
* @description Sui generis
*/
type SG = 'SG';

/**
* @description Not known
*/
type Unknown = 'unknown';

/**
* @id #GLAUseClass
* @description Use classes tracked by the Greater London Authority (GLA)
*/
export type GLAUseClass =
| BTwo
| BEight
| COne
| CTwo
| CTwoA
| CThree
| CFour
| E
| FOne
| FTwo
| SG
| Unknown;

0 comments on commit ffb551f

Please sign in to comment.