Skip to content

Commit

Permalink
fill in other examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Feb 26, 2024
1 parent 3f83b70 commit e72cbfa
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 24 deletions.
40 changes: 31 additions & 9 deletions examples/data/ldcE.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ export const validLDCE: Schema = {
description: 'Lawful Development Certificate - Existing use',
},
fee: {
calculated: 206,
payable: 206,
calculated: 258,
payable: 258,
exemption: {
disability: true,
resubmission: true,
disability: false,
resubmission: false,
},
reduction: {
sports: true,
parishCouncil: true,
alternative: true,
sports: false,
parishCouncil: false,
alternative: false,
},
reference: {
govPay: 'sandbox-ref-123',
Expand Down Expand Up @@ -1275,8 +1275,30 @@ export const validLDCE: Schema = {
optional: [],
},
fee: {
calculated: [],
payable: [],
calculated: [
{
description:
'The planning fee for an application for a Certificate of Lawfulness relating to existing alterations or extensions of a single home is £258.',
policyRefs: [
{
text: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
payable: [
{
description:
'The planning fee for an application for a Certificate of Lawfulness relating to existing alterations or extensions of a single home is £258.',
policyRefs: [
{
text: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
},
},
submittedAt: '2023-10-02t00:00:00z',
Expand Down
40 changes: 31 additions & 9 deletions examples/data/planningPermission.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ export const validPlanningPermission: Schema = {
description: 'Planning Permission - Full householder',
},
fee: {
calculated: 206,
payable: 206,
calculated: 258,
payable: 258,
exemption: {
disability: true,
resubmission: true,
disability: false,
resubmission: false,
},
reduction: {
sports: true,
parishCouncil: true,
alternative: true,
sports: false,
parishCouncil: false,
alternative: false,
},
reference: {
govPay: 'sandbox-ref-456',
Expand Down Expand Up @@ -1295,8 +1295,30 @@ export const validPlanningPermission: Schema = {
optional: [],
},
fee: {
calculated: [],
payable: [],
calculated: [
{
description:
'The fee to apply for planning permission to alter or extend a single home is £258.',
policyRefs: [
{
text: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
payable: [
{
description:
'The fee to apply for planning permission to alter or extend a single home is £258.',
policyRefs: [
{
text: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
},
},
submittedAt: '2023-10-02T00:00:00.00Z',
Expand Down
32 changes: 26 additions & 6 deletions examples/data/priorApproval.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export const validPriorApproval: Schema = {
description: 'Prior Approval - Install or change solar panels',
},
fee: {
calculated: 96,
payable: 96,
calculated: 120,
payable: 120,
exemption: {
disability: true,
resubmission: true,
disability: false,
resubmission: false,
},
reduction: {
sports: false,
Expand Down Expand Up @@ -803,8 +803,28 @@ export const validPriorApproval: Schema = {
optional: [],
},
fee: {
calculated: [],
payable: [],
calculated: [
{
description: '',
policyRefs: [
{
text: 'The Town and Country Planning (Fees for Applications, Deemed Applications, Requests and Site Visits) (England) (Amendment) Regulations 2023',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
payable: [
{
description: '',
policyRefs: [
{
text: 'The Town and Country Planning (Fees for Applications, Deemed Applications, Requests and Site Visits) (England) (Amendment) Regulations 2023',
url: 'https://www.legislation.gov.uk/uksi/2023/1197/made',
},
],
},
],
},
},
submittedAt: '2023-10-02T00:00:00Z',
Expand Down

0 comments on commit e72cbfa

Please sign in to comment.