-
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
14362fc
commit 8bb96a8
Showing
1 changed file
with
119 additions
and
0 deletions.
There are no files selected for viewing
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,119 @@ | ||
/** | ||
* @description Allotments, community gardens and city farms | ||
*/ | ||
type Allotment = 'allotment'; | ||
|
||
/** | ||
* @description Amenity | ||
*/ | ||
type Amenity = 'amenity'; | ||
|
||
/** | ||
* @description Brownfield land | ||
*/ | ||
type Brownfield = 'brownfield'; | ||
|
||
/** | ||
* @description Cemeteries, churchyards and other burial grounds | ||
*/ | ||
type Burial = 'burial'; | ||
|
||
/** | ||
* @description Provision for children and young people | ||
*/ | ||
type Children = 'children'; | ||
|
||
/** | ||
* @description Civic spaces | ||
*/ | ||
type Civic = 'civic'; | ||
|
||
/** | ||
* @description Countryside in urban fringe areas | ||
*/ | ||
type Fringe = 'fringe'; | ||
|
||
/** | ||
* @description Green corridors | ||
*/ | ||
type GreenCorridor = 'greenCorridor'; | ||
|
||
/** | ||
* @description Natural and semi-natural | ||
*/ | ||
type Natural = 'natural'; | ||
|
||
/** | ||
* @description Non-residential institution grounds or gardens | ||
*/ | ||
type NonResidential = 'nonResidential'; | ||
|
||
/** | ||
* @description Parks and gardens | ||
*/ | ||
type Park = 'park'; | ||
|
||
/** | ||
* @description Residential gardens | ||
*/ | ||
type Residential = 'residential'; | ||
|
||
/** | ||
* @description Outdoor sports facilities | ||
*/ | ||
type Sport = 'sport'; | ||
|
||
/** | ||
* @description Green Belt | ||
*/ | ||
type GreenBelt = 'greenBelt'; | ||
|
||
/** | ||
* @description Local Open Spaces | ||
*/ | ||
type Local = 'local'; | ||
|
||
/** | ||
* @description Metropolitan Open Land | ||
*/ | ||
type Metropolitan = 'metropolitan'; | ||
|
||
/** | ||
* @description Not designated | ||
*/ | ||
type None = 'none'; | ||
|
||
/** | ||
* @description Other designation | ||
*/ | ||
type Other = 'other'; | ||
|
||
/** | ||
* @id #OpenSpaceType | ||
* @description Types of natural open spaces | ||
*/ | ||
export type OpenSpaceType = | ||
| Allotment | ||
| Amenity | ||
| Brownfield | ||
| Burial | ||
| Children | ||
| Civic | ||
| Fringe | ||
| GreenCorridor | ||
| Natural | ||
| NonResidential | ||
| Park | ||
| Residential | ||
| Sport; | ||
|
||
/** | ||
* @id #OpenSpaceDesignation | ||
* @description Designations of natural open spaces | ||
*/ | ||
export type OpenSpaceDesignation = | ||
| GreenBelt | ||
| Local | ||
| Metropolitan | ||
| None | ||
| Other; |