diff --git a/schemas/application.json b/schemas/application.json index ca048c05..3be104a8 100644 --- a/schemas/application.json +++ b/schemas/application.json @@ -8359,7 +8359,7 @@ "interest": { "enum": [ "owner", - "tenant", + "lessee", "occupier", "other" ], @@ -8400,7 +8400,7 @@ "interest": { "enum": [ "owner", - "tenant", + "lessee", "occupier", "other" ], @@ -8436,7 +8436,7 @@ "interest": { "enum": [ "owner", - "tenant", + "lessee", "occupier", "other" ], @@ -8494,7 +8494,7 @@ "owner", "owner.sole", "owner.co", - "tenant", + "lessee", "occupier", "other" ], diff --git a/schemas/prototypeApplication.json b/schemas/prototypeApplication.json index 18cd1eef..2a8361ac 100644 --- a/schemas/prototypeApplication.json +++ b/schemas/prototypeApplication.json @@ -4753,7 +4753,7 @@ "OwnershipInterest": { "enum": [ "owner", - "tenant", + "lessee", "occupier", "other" ], diff --git a/types/schemas/prototypeApplication/data/Applicant.ts b/types/schemas/prototypeApplication/data/Applicant.ts index ce91be28..3f629be1 100644 --- a/types/schemas/prototypeApplication/data/Applicant.ts +++ b/types/schemas/prototypeApplication/data/Applicant.ts @@ -67,7 +67,7 @@ export interface ApplicantAddressNotSameSite extends UserAddress { sameAsSiteAddress: false; } -export type OwnershipInterest = 'owner' | 'tenant' | 'occupier' | 'other'; +export type OwnershipInterest = 'owner' | 'lessee' | 'occupier' | 'other'; export interface BaseOwners { name: string;