-
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.
add maintenanceContact and planningApp types
- Loading branch information
1 parent
c8c87e0
commit 574b143
Showing
6 changed files
with
244 additions
and
6 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 |
---|---|---|
|
@@ -28,6 +28,48 @@ export const landDrainageConsent: Schema = { | |
siteContact: { | ||
role: 'applicant', | ||
}, | ||
ownership: { | ||
interest: 'other', | ||
}, | ||
maintenanceContact: [ | ||
{ | ||
when: 'duringConstruction', | ||
address: { | ||
line1: 'Pevensey Castle', | ||
town: 'Pevensey', | ||
postcode: 'PE737SY', | ||
}, | ||
contact: { | ||
name: { | ||
title: 'Count', | ||
first: 'Robert', | ||
last: 'of Mortain', | ||
}, | ||
email: '[email protected]', | ||
phone: '012345678901', | ||
}, | ||
}, | ||
{ | ||
when: 'afterConstruction', | ||
address: { | ||
line1: 'Dover Castle', | ||
town: 'Dover', | ||
postcode: 'DO737CA', | ||
}, | ||
contact: { | ||
name: { | ||
title: 'Baron', | ||
first: 'Roger', | ||
last: 'De Leybourne', | ||
}, | ||
email: '[email protected]', | ||
phone: '098765432109', | ||
company: { | ||
name: "The Barons' Revolt", | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
property: { | ||
address: { | ||
|
@@ -377,6 +419,11 @@ export const landDrainageConsent: Schema = { | |
officer: 'Unknown', | ||
summary: 'Not provided', | ||
}, | ||
planningApp: { | ||
reference: '24/12345/FUL', | ||
date: '2024-06-28', | ||
localPlanningAuthority: 'Medway', | ||
}, | ||
}, | ||
proposal: { | ||
projectType: [ | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,49 @@ | |
}, | ||
"siteContact": { | ||
"role": "applicant" | ||
} | ||
}, | ||
"ownership": { | ||
"interest": "other" | ||
}, | ||
"maintenanceContact": [ | ||
{ | ||
"when": "duringConstruction", | ||
"address": { | ||
"line1": "Pevensey Castle", | ||
"town": "Pevensey", | ||
"postcode": "PE737SY" | ||
}, | ||
"contact": { | ||
"name": { | ||
"title": "Count", | ||
"first": "Robert", | ||
"last": "of Mortain" | ||
}, | ||
"email": "[email protected]", | ||
"phone": "012345678901" | ||
} | ||
}, | ||
{ | ||
"when": "afterConstruction", | ||
"address": { | ||
"line1": "Dover Castle", | ||
"town": "Dover", | ||
"postcode": "DO737CA" | ||
}, | ||
"contact": { | ||
"name": { | ||
"title": "Baron", | ||
"first": "Roger", | ||
"last": "De Leybourne" | ||
}, | ||
"email": "[email protected]", | ||
"phone": "098765432109", | ||
"company": { | ||
"name": "The Barons' Revolt" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"property": { | ||
"address": { | ||
|
@@ -591,6 +633,11 @@ | |
"date": "2024-06-08", | ||
"officer": "Unknown", | ||
"summary": "Not provided" | ||
}, | ||
"planningApp": { | ||
"reference": "24/12345/FUL", | ||
"date": "2024-06-28", | ||
"localPlanningAuthority": "Medway" | ||
} | ||
}, | ||
"proposal": { | ||
|
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
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
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
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