From 203c9efb7c602c9065b6e6fee637eae20c4bf691 Mon Sep 17 00:00:00 2001 From: Jessica McInchak Date: Wed, 10 Jul 2024 12:40:50 +0200 Subject: [PATCH] sync to planning permission template --- schema/schema.json | 54 ++++++++++++++++++++++++++++++++++++++++ types/enums/FileTypes.ts | 3 +++ 2 files changed, 57 insertions(+) diff --git a/schema/schema.json b/schema/schema.json index 3ba910e4..abacb679 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -4238,6 +4238,24 @@ ], "type": "object" }, + { + "additionalProperties": false, + "properties": { + "description": { + "const": "Recyclable waste storage details", + "type": "string" + }, + "value": { + "const": "recycleWasteStorageDetails", + "type": "string" + } + }, + "required": [ + "value", + "description" + ], + "type": "object" + }, { "additionalProperties": false, "properties": { @@ -4256,6 +4274,24 @@ ], "type": "object" }, + { + "additionalProperties": false, + "properties": { + "description": { + "const": "Residential units details", + "type": "string" + }, + "value": { + "const": "residentialUnitsDetails", + "type": "string" + } + }, + "required": [ + "value", + "description" + ], + "type": "object" + }, { "additionalProperties": false, "properties": { @@ -4922,6 +4958,24 @@ ], "type": "object" }, + { + "additionalProperties": false, + "properties": { + "description": { + "const": "Waste storage details", + "type": "string" + }, + "value": { + "const": "wasteStorageDetails", + "type": "string" + } + }, + "required": [ + "value", + "description" + ], + "type": "object" + }, { "additionalProperties": false, "properties": { diff --git a/types/enums/FileTypes.ts b/types/enums/FileTypes.ts index 579fd682..049db8ab 100644 --- a/types/enums/FileTypes.ts +++ b/types/enums/FileTypes.ts @@ -66,8 +66,10 @@ export const FileTypes = { 'photographs.existing': 'Photographs - existing', 'photographs.proposed': 'Photographs - proposed', planningStatement: 'Planning statement', + recycleWasteStorageDetails: 'Recyclable waste storage details', relevantInformation: 'Information the applicant considers relevant to the application', + residentialUnitsDetails: 'Residential units details', 'roofPlan.existing': 'Roof plan - existing', 'roofPlan.proposed': 'Roof plan - proposed', 'sections.existing': 'Sections - existing', @@ -106,6 +108,7 @@ export const FileTypes = { viabilityAppraisal: 'Viability Appraisal', visualisations: 'Visualisations', wasteAndRecyclingStrategy: 'Waste and recycling strategy', + wasteStorageDetails: 'Waste storage details', waterEnvironmentAssessment: 'Water environment assessment', };