Skip to content

Commit

Permalink
fix: additional FileTypes for householder applications (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak authored Mar 14, 2024
1 parent 7b8fd03 commit 4be6615
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
54 changes: 54 additions & 0 deletions schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2221,6 +2221,24 @@
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "External materials details",
"type": "string"
},
"value": {
"const": "externalMaterialsDetails",
"type": "string"
}
},
"required": [
"value",
"description"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -3139,6 +3157,42 @@
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Location of trees and hedges",
"type": "string"
},
"value": {
"const": "treeAndHedgeLocation",
"type": "string"
}
},
"required": [
"value",
"description"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"const": "Removed or pruned trees and hedges",
"type": "string"
},
"value": {
"const": "treeAndHedgeRemovedOrPruned",
"type": "string"
}
},
"required": [
"value",
"description"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
Expand Down
3 changes: 3 additions & 0 deletions types/enums/FileTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const FileTypes = {
'Scheme for mitigation and monitoring of emissions (dust, odour and vibrations)',
energyStatement: 'Energy statement',
environmentalImpactAssessment: 'Environmental Impact Assessment (EIA)',
externalMaterialsDetails: 'External materials details',
fireSafetyReport: 'Fire safety report',
floodRiskAssessment: 'Flood risk assessment (FRA)',
'floorPlan.existing': 'Floor plan - existing',
Expand Down Expand Up @@ -81,6 +82,8 @@ export const FileTypes = {
townCentreSequentialAssessment: 'Town centre uses - Sequential assessment',
transportAssessment: 'Transport assessment',
travelPlan: 'Travel plan',
treeAndHedgeLocation: 'Location of trees and hedges',
treeAndHedgeRemovedOrPruned: 'Removed or pruned trees and hedges',
treeCanopyCalculator: 'Tree canopy calculator',
treeConditionReport: 'Tree condition report',
treesReport: 'Trees report',
Expand Down

0 comments on commit 4be6615

Please sign in to comment.