From 4a03724a693182da8d8e9ed4e196c5051d1bfaa3 Mon Sep 17 00:00:00 2001 From: Jessica McInchak Date: Wed, 1 May 2024 10:37:48 +0200 Subject: [PATCH] fix typo --- schema/schema.json | 1 + types/schema/data/Applicant.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/schema/schema.json b/schema/schema.json index 20455249..3f0517c3 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -5174,6 +5174,7 @@ "description": "Information about the ownership certificate and property owners, if different than the applicant", "properties": { "agriculturalTenants": { + "description": "Does the land have any agricultural tenants?", "type": "boolean" }, "certificate": { diff --git a/types/schema/data/Applicant.ts b/types/schema/data/Applicant.ts index 6b6e3487..095ed749 100644 --- a/types/schema/data/Applicant.ts +++ b/types/schema/data/Applicant.ts @@ -44,7 +44,7 @@ export interface BaseApplicant { export interface Ownership { certificate: 'a' | 'b' | 'c' | 'd'; /** - * @desscription Does the land have any agricultural tenants? + * @description Does the land have any agricultural tenants? */ agriculturalTenants?: boolean; /**