From 52a2c9b0568105c577054d7f6e17f715681ee1c7 Mon Sep 17 00:00:00 2001 From: Jessica McInchak Date: Thu, 26 Sep 2024 09:24:16 +0200 Subject: [PATCH] fix typo --- schemas/application.json | 2 +- schemas/prototypeApplication.json | 2 +- types/schemas/application/enums/ApplicationTypes.ts | 2 +- types/schemas/prototypeApplication/enums/ApplicationType.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/application.json b/schemas/application.json index ac298786..ca048c05 100644 --- a/schemas/application.json +++ b/schemas/application.json @@ -2229,7 +2229,7 @@ "additionalProperties": false, "properties": { "description": { - "const": "Outline Planning Permission - Consent for the principle of waste development witholding all details", + "const": "Outline Planning Permission - Consent for the principle of waste development witholding some details", "type": "string" }, "value": { diff --git a/schemas/prototypeApplication.json b/schemas/prototypeApplication.json index 7586f40d..18cd1eef 100644 --- a/schemas/prototypeApplication.json +++ b/schemas/prototypeApplication.json @@ -5705,7 +5705,7 @@ }, { "const": "pp.outline.major.some.waste", - "description": "Outline Planning Permission - Consent for the principle of waste development witholding all details", + "description": "Outline Planning Permission - Consent for the principle of waste development witholding some details", "type": "string" }, { diff --git a/types/schemas/application/enums/ApplicationTypes.ts b/types/schemas/application/enums/ApplicationTypes.ts index 612da11b..a7b32332 100644 --- a/types/schemas/application/enums/ApplicationTypes.ts +++ b/types/schemas/application/enums/ApplicationTypes.ts @@ -162,7 +162,7 @@ export const ApplicationTypes = { 'pp.outline.major.some': 'Outline Planning Permission - Consent for the principle of a project specifying some details (major)', 'pp.outline.major.some.waste': - 'Outline Planning Permission - Consent for the principle of waste development witholding all details', + 'Outline Planning Permission - Consent for the principle of waste development witholding some details', 'pp.pip': 'Planning Permission in Principle - Consent for the principle of a project with less than 1,000 square metres floor area on a site of less than 1 hectare', rightsOfWayOrder: 'Rights of Way Order - Apply to move or close a path', diff --git a/types/schemas/prototypeApplication/enums/ApplicationType.ts b/types/schemas/prototypeApplication/enums/ApplicationType.ts index d9e55da6..ef9a4e75 100644 --- a/types/schemas/prototypeApplication/enums/ApplicationType.ts +++ b/types/schemas/prototypeApplication/enums/ApplicationType.ts @@ -578,7 +578,7 @@ type PPOutlineMajorAllWaste = 'pp.outline.major.all.waste'; type PPOutlineMajorSome = 'pp.outline.major.some'; /** - * @description Outline Planning Permission - Consent for the principle of waste development witholding all details + * @description Outline Planning Permission - Consent for the principle of waste development witholding some details */ type PPOutlineMajorSomeWaste = 'pp.outline.major.some.waste';