Skip to content

Commit

Permalink
slight re-order of fields for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed May 1, 2024
1 parent 4a03724 commit 0a3490b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5225,15 +5225,6 @@
"noticeReason": {
"type": "string"
},
"ownerKnown": {
"description": "Do you know the names and addresses of all owners and agricultural tenants?",
"enum": [
"all",
"some",
"none"
],
"type": "string"
},
"owners": {
"description": "Names and addresses of all known owners and agricultural tenants",
"items": {
Expand Down Expand Up @@ -5263,6 +5254,15 @@
"type": "object"
},
"type": "array"
},
"ownersKnown": {
"description": "Do you know the names and addresses of all owners and agricultural tenants?",
"enum": [
"all",
"some",
"none"
],
"type": "string"
}
},
"required": [
Expand Down
8 changes: 4 additions & 4 deletions types/schema/data/Applicant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ export interface Ownership {
* @description Does the land have any agricultural tenants?
*/
agriculturalTenants?: boolean;
/**
* @description Do you know the names and addresses of all owners and agricultural tenants?
*/
ownerKnown?: 'all' | 'some' | 'none';
/**
* @description Has requisite notice been given to all the known owners and agricultural tenants?
*/
Expand All @@ -67,6 +63,10 @@ export interface Ownership {
date?: Date;
newspaperName?: string;
};
/**
* @description Do you know the names and addresses of all owners and agricultural tenants?
*/
ownersKnown?: 'all' | 'some' | 'none';
/**
* @description Names and addresses of all known owners and agricultural tenants
*/
Expand Down

0 comments on commit 0a3490b

Please sign in to comment.