@pdtf/schemas 3.6.0-dev.6 → 3.6.0-dev.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/busy-spence-79c6bf/CLAUDE.md +101 -0
  2. package/busy-spence-79c6bf/LICENSE +21 -0
  3. package/busy-spence-79c6bf/README.md +435 -0
  4. package/busy-spence-79c6bf/docs/branch-release-workflow.md +138 -0
  5. package/busy-spence-79c6bf/docs/sef25-extensions-ui-spec.md +355 -0
  6. package/busy-spence-79c6bf/index.js +654 -0
  7. package/busy-spence-79c6bf/package-lock.json +7299 -0
  8. package/busy-spence-79c6bf/package.json +44 -0
  9. package/busy-spence-79c6bf/scripts/ta6ed6-titles.js +403 -0
  10. package/busy-spence-79c6bf/scripts/ta7ed5-titles.js +183 -0
  11. package/busy-spence-79c6bf/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  12. package/busy-spence-79c6bf/src/examples/v1/exampleDocumentedVouch.json +40 -0
  13. package/busy-spence-79c6bf/src/examples/v1/exampleElectronicRecord.json +30 -0
  14. package/busy-spence-79c6bf/src/examples/v1/exampleTransaction.json +878 -0
  15. package/busy-spence-79c6bf/src/examples/v1/exampleVouch.json +25 -0
  16. package/busy-spence-79c6bf/src/examples/v2/exampleTransaction.json +901 -0
  17. package/busy-spence-79c6bf/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  18. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay.json +55 -0
  19. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay2.json +93 -0
  20. package/busy-spence-79c6bf/src/examples/v3/exampleDocumentedVouch.json +47 -0
  21. package/busy-spence-79c6bf/src/examples/v3/exampleElectronicRecord.json +36 -0
  22. package/busy-spence-79c6bf/src/examples/v3/exampleTransaction.json +1038 -0
  23. package/busy-spence-79c6bf/src/examples/v3/exampleVouch.json +32 -0
  24. package/busy-spence-79c6bf/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  25. package/busy-spence-79c6bf/src/mappings/adf.js +198 -0
  26. package/busy-spence-79c6bf/src/schemas/v1/GeoJSON.json +1279 -0
  27. package/busy-spence-79c6bf/src/schemas/v1/baspiNotes.html +102 -0
  28. package/busy-spence-79c6bf/src/schemas/v1/energy-performance-certificate.json +124 -0
  29. package/busy-spence-79c6bf/src/schemas/v1/freehold-information.json +2051 -0
  30. package/busy-spence-79c6bf/src/schemas/v1/leasehold-information.json +2064 -0
  31. package/busy-spence-79c6bf/src/schemas/v1/legal-information.json +1045 -0
  32. package/busy-spence-79c6bf/src/schemas/v1/material-facts.json +2109 -0
  33. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  34. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction.json +191 -0
  35. package/busy-spence-79c6bf/src/schemas/v1/searches/drainage-and-water.json +261 -0
  36. package/busy-spence-79c6bf/src/schemas/v1/searches/local-land-charges.json +69 -0
  37. package/busy-spence-79c6bf/src/schemas/v1/searches/local-searches-required.json +857 -0
  38. package/busy-spence-79c6bf/src/schemas/v1/searches.json +237 -0
  39. package/busy-spence-79c6bf/src/schemas/v1/title-deed.json +841 -0
  40. package/busy-spence-79c6bf/src/schemas/v2/baspiNotes.html +102 -0
  41. package/busy-spence-79c6bf/src/schemas/v2/combined.json +37731 -0
  42. package/busy-spence-79c6bf/src/schemas/v2/overlays/baspi.json +8132 -0
  43. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29DW.json +705 -0
  44. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29R.json +2956 -0
  45. package/busy-spence-79c6bf/src/schemas/v2/overlays/fme1.json +1259 -0
  46. package/busy-spence-79c6bf/src/schemas/v2/overlays/llc1.json +25 -0
  47. package/busy-spence-79c6bf/src/schemas/v2/overlays/lpe1.json +2171 -0
  48. package/busy-spence-79c6bf/src/schemas/v2/overlays/nts.json +326 -0
  49. package/busy-spence-79c6bf/src/schemas/v2/overlays/oc1.json +2799 -0
  50. package/busy-spence-79c6bf/src/schemas/v2/overlays/piq.json +3419 -0
  51. package/busy-spence-79c6bf/src/schemas/v2/overlays/rds.json +3736 -0
  52. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta10.json +5306 -0
  53. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta6.json +4533 -0
  54. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta7.json +1045 -0
  55. package/busy-spence-79c6bf/src/schemas/v2/pdtf-transaction.json +34351 -0
  56. package/busy-spence-79c6bf/src/schemas/v2/skeleton.json +3973 -0
  57. package/busy-spence-79c6bf/src/schemas/v3/combined.json +48643 -0
  58. package/busy-spence-79c6bf/src/schemas/v3/compactSkeleton.txt +4519 -0
  59. package/busy-spence-79c6bf/src/schemas/v3/overlays/README.md +299 -0
  60. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi4.json +8030 -0
  61. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi5.json +8180 -0
  62. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29DW.json +716 -0
  63. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29R.json +2981 -0
  64. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ac.json +334 -0
  65. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/as.json +74 -0
  66. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dk.json +33 -0
  67. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dr.json +73 -0
  68. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/er.json +85 -0
  69. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/fd.json +75 -0
  70. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hi.json +51 -0
  71. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hs.json +73 -0
  72. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ic.json +94 -0
  73. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/jk.json +96 -0
  74. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/la.json +85 -0
  75. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/lc.json +76 -0
  76. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ma.json +90 -0
  77. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mc.json +38 -0
  78. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mi.json +70 -0
  79. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/nd.json +44 -0
  80. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oa.json +24 -0
  81. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oc.json +57 -0
  82. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/pc.json +38 -0
  83. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ph.json +195 -0
  84. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/rw.json +69 -0
  85. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sb.json +73 -0
  86. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sc.json +133 -0
  87. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sd.json +64 -0
  88. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sf.json +74 -0
  89. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sl.json +68 -0
  90. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ta.json +204 -0
  91. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tf.json +103 -0
  92. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tr.json +74 -0
  93. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/wg.json +351 -0
  94. package/busy-spence-79c6bf/src/schemas/v3/overlays/fme1.json +1266 -0
  95. package/busy-spence-79c6bf/src/schemas/v3/overlays/llc1.json +25 -0
  96. package/busy-spence-79c6bf/src/schemas/v3/overlays/lpe1.json +2199 -0
  97. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts.json +2159 -0
  98. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts2.json +2744 -0
  99. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl.json +1815 -0
  100. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl2.json +2219 -0
  101. package/busy-spence-79c6bf/src/schemas/v3/overlays/oc1.json +2817 -0
  102. package/busy-spence-79c6bf/src/schemas/v3/overlays/piq.json +3324 -0
  103. package/busy-spence-79c6bf/src/schemas/v3/overlays/rds.json +3668 -0
  104. package/busy-spence-79c6bf/src/schemas/v3/overlays/sef25.json +1653 -0
  105. package/busy-spence-79c6bf/src/schemas/v3/overlays/sr24.json +38 -0
  106. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta10.json +4645 -0
  107. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6.json +4572 -0
  108. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6ed6.json +6665 -0
  109. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7.json +1537 -0
  110. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7ed5.json +1585 -0
  111. package/busy-spence-79c6bf/src/schemas/v3/pdtf-transaction.json +41570 -0
  112. package/busy-spence-79c6bf/src/schemas/v3/skeleton.json +5767 -0
  113. package/busy-spence-79c6bf/src/schemas/verifiedClaims/README.md +21 -0
  114. package/busy-spence-79c6bf/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  115. package/busy-spence-79c6bf/src/utils/compactSkeleton.js +84 -0
  116. package/busy-spence-79c6bf/src/utils/countTokens.js +67 -0
  117. package/busy-spence-79c6bf/src/utils/extractExtensionOverlays.js +633 -0
  118. package/busy-spence-79c6bf/src/utils/extractOverlay.js +381 -0
  119. package/busy-spence-79c6bf/src/utils/extractProperties.js +44 -0
  120. package/busy-spence-79c6bf/src/utils/listPathTitles.js +36 -0
  121. package/busy-spence-79c6bf/src/utils/minimalSkeleton.js +85 -0
  122. package/busy-spence-79c6bf/src/utils/pathList.csv +903 -0
  123. package/busy-spence-79c6bf/src/utils/pathSkeleton.js +181 -0
  124. package/busy-spence-79c6bf/ta6ed6-titles-plan.md +118 -0
  125. package/busy-spence-79c6bf/ta7ed5-titles-spec.md +89 -0
  126. package/package.json +1 -1
  127. package/src/schemas/v3/combined.json +228 -50
  128. package/src/schemas/v3/overlays/llc1.json +1 -2
  129. package/src/schemas/v3/overlays/ta6ed6.json +204 -75
  130. package/src/schemas/v3/overlays/ta7ed5.json +54 -20
  131. package/src/schemas/v3/pdtf-transaction.json +7 -7
@@ -0,0 +1,901 @@
1
+ {
2
+ "$schema": "https://trust.propdata.org.uk/schemas/v2/pdtf-transaction.json",
3
+ "transactionId": "3e4666bf-d5e5-4aa7-b8ce-cefe41c7568a",
4
+ "status": "active",
5
+ "participants": [
6
+ {
7
+ "name": {
8
+ "firstName": "Peter",
9
+ "lastName": "Hetherington-Smythe"
10
+ },
11
+ "dateOfBirth": "1975-12-25",
12
+ "phone": "07777 222333",
13
+ "email": "peter@theseller.com",
14
+ "address": { "line1": "47 Park Road", "postcode": "AL3 5AF" },
15
+ "role": "Seller",
16
+ "externalIds": { "MoveReady": "123434" }
17
+ },
18
+ {
19
+ "role": "Seller's Conveyancer",
20
+ "name": { "firstName": "Johnny", "lastName": "Law" },
21
+ "address": {
22
+ "line1": "123 Sweet St",
23
+ "line2": "Test building",
24
+ "town": "London",
25
+ "postcode": "SW1A 1AA"
26
+ },
27
+ "email": "johnny@suemme.co.uk",
28
+ "organisation": "Suemme and Profitt",
29
+ "organisationReference": "123456"
30
+ }
31
+ ],
32
+ "propertyPack": {
33
+ "materialFacts": {
34
+ "uprn": 1241304304,
35
+ "address": {
36
+ "line1": "47 Park Road",
37
+ "line2": "",
38
+ "line3": "",
39
+ "town": "HARPENDEN",
40
+ "postcode": "AL3 5AF"
41
+ },
42
+ "delayFactors": {
43
+ "hasDelayFactors": { "yesNo": "No" }
44
+ },
45
+ "ownership": {
46
+ "ownershipsToBeTransferred": [
47
+ {
48
+ "titleNumber": "HD221222",
49
+ "ownershipType": "Leasehold",
50
+ "leaseholdInformation": {
51
+ "typeOfLeasehold": {
52
+ "leaseholdType": "Shared ownership",
53
+ "sharedOwnershipPercentage": 50,
54
+ "sharedOwnershipRent": 200,
55
+ "sharedOwnershipRentFrequency": "Monthly"
56
+ },
57
+ "leaseTerm": {
58
+ "startYearOfLease": 1900,
59
+ "lengthOfLeaseInYears": 999
60
+ },
61
+ "contactDetails": {
62
+ "contacts": {
63
+ "landlord": {
64
+ "contact": {
65
+ "nameOrOrganisation": "Fleesum Properties",
66
+ "address": {
67
+ "line1": "47 Park Road",
68
+ "postcode": "AL3 5AF"
69
+ },
70
+ "emailAddress": "james@fleesum.com"
71
+ }
72
+ },
73
+ "managingAgent": {
74
+ "contact": {
75
+ "nameOrOrganisation": "Pricee Living",
76
+ "address": {
77
+ "line1": "Pricee House",
78
+ "postcode": "AL3 5KK"
79
+ },
80
+ "emailAddress": "marcel@pricee.co.uk"
81
+ }
82
+ }
83
+ }
84
+ },
85
+ "groundRent": {
86
+ "isGroundRentPayable": "Yes",
87
+ "annualGroundRent": 1750,
88
+ "rentSubjectToIncrease": {
89
+ "yesNo": "Yes",
90
+ "rentReviewFrequency": "Annually",
91
+ "rentIncreaseCalculated": "RPI"
92
+ }
93
+ },
94
+ "transferAndRegistration": {
95
+ "requirementsToBeMemberOfManagementCompany": {
96
+ "yesNoNotApplicable": "No"
97
+ }
98
+ },
99
+ "serviceCharge": {
100
+ "sellerContributesToServiceCharge": "Yes",
101
+ "annualServiceCharge": 250.23,
102
+ "largeAdditionalExpense": { "yesNo": "No" },
103
+ "reserveFund": {
104
+ "yesNo": "Yes",
105
+ "details": "There is sinking fund."
106
+ }
107
+ },
108
+ "additionalFeesOnSale": 0
109
+ }
110
+ }
111
+ ]
112
+ },
113
+ "parking": {
114
+ "parkingArrangements": {
115
+ "parkingArrangementsType": "Other",
116
+ "otherParkingType": "Garage and double width driveway"
117
+ },
118
+ "electricVehicleChargingPoint": { "yesNo": "No" },
119
+ "controlledParking": { "yesNo": "No" }
120
+ },
121
+ "listingAndConservation": {
122
+ "isListed": {
123
+ "yesNo": "Yes",
124
+ "details": "Grade II listed",
125
+ "attachments": "To follow"
126
+ },
127
+ "isConservationArea": {
128
+ "yesNo": "Yes",
129
+ "details": "Harpenden Conservation Area",
130
+ "attachments": "To follow"
131
+ },
132
+ "hasTreePreservationOrder": {
133
+ "yesNo": "Yes",
134
+ "workCarriedOut": { "yesNo": "Yes", "consentsObtained": "Yes" }
135
+ }
136
+ },
137
+ "typeOfConstruction": {
138
+ "isStandardForm": {
139
+ "yesNo": "Yes"
140
+ },
141
+ "buildingSafetyRemediation": { "yesNo": "No" },
142
+ "sprayFoamInsulation": {
143
+ "hasSprayFoamInstalled": "No"
144
+ }
145
+ },
146
+ "energyEfficiency": {
147
+ "certificateIsSupplied": "Attached",
148
+ "certificate": {
149
+ "certificateNumber": "12345",
150
+ "currentEnergyRating": "A"
151
+ },
152
+ "greenDealLoan": {
153
+ "hasGreenDealLoan": {
154
+ "yesNo": "No"
155
+ }
156
+ }
157
+ },
158
+ "councilTax": {
159
+ "councilTaxBand": "A",
160
+ "councilTaxAffectingAlterations": {
161
+ "yesNo": "No"
162
+ }
163
+ },
164
+ "disputesAndComplaints": {
165
+ "hasDisputesAndComplaints": {
166
+ "yesNo": "Yes",
167
+ "details": "Neighbour's very annoying"
168
+ },
169
+ "leadingToDisputesAndComplaints": {
170
+ "yesNo": "Yes",
171
+ "details": "Neighbour's dog barking"
172
+ }
173
+ },
174
+ "alterationsAndChanges": {
175
+ "hasStructuralAlterations": {
176
+ "buildingRegApproval": {
177
+ "yesNo": "Yes",
178
+ "attachments": "Attached"
179
+ },
180
+ "planningPermission": {
181
+ "yesNo": "Not required",
182
+ "details": "Permitted development rights applied"
183
+ },
184
+ "listedBuildingConsent": {
185
+ "yesNo": "Not required",
186
+ "details": "Not a listed building"
187
+ },
188
+ "deedRestrictionConsent": {
189
+ "yesNo": "Not required",
190
+ "details": "No restriction"
191
+ },
192
+ "yesNo": "Yes",
193
+ "details": "Bedroom and ensuite shower room extension 2005"
194
+ },
195
+ "changeOfUse": {
196
+ "yesNo": "No"
197
+ },
198
+ "windowReplacementsSince2002": {
199
+ "buildingRegApproval": {
200
+ "yesNo": "Yes",
201
+ "attachments": "To follow"
202
+ },
203
+ "planningPermission": {
204
+ "yesNo": "Yes",
205
+ "attachments": "Attached"
206
+ },
207
+ "listedBuildingConsent": {
208
+ "yesNo": "Not required",
209
+ "details": "Not a listed building"
210
+ },
211
+ "deedRestrictionConsent": {
212
+ "yesNo": "Not required",
213
+ "details": "No restriction"
214
+ },
215
+ "yesNo": "Yes",
216
+ "details": "New front door added 2016",
217
+ "yearCompleted": 2016
218
+ },
219
+ "hasAddedConservatory": {
220
+ "buildingRegApproval": {
221
+ "yesNo": "Yes",
222
+ "attachments": "Attached"
223
+ },
224
+ "planningPermission": {
225
+ "yesNo": "Yes",
226
+ "attachments": "To follow"
227
+ },
228
+ "listedBuildingConsent": {
229
+ "yesNo": "Not required",
230
+ "details": "Not a listed building"
231
+ },
232
+ "deedRestrictionConsent": {
233
+ "yesNo": "No",
234
+ "details": "Added as part of initial build and deeds"
235
+ },
236
+ "yesNo": "Yes",
237
+ "details": "Conservatory added during house build in 1990 and exterior quality door separates the conservatory from the kitchen/dining room",
238
+ "yearCompleted": 1990
239
+ },
240
+ "worksUnfinished": {
241
+ "yesNo": "No"
242
+ },
243
+ "planningPermissionBreaches": {
244
+ "yesNo": "No"
245
+ },
246
+ "unresolvedPlanningIssues": {
247
+ "yesNo": "No"
248
+ }
249
+ },
250
+ "notices": {
251
+ "neighbourDevelopment": {
252
+ "yesNo": "No"
253
+ },
254
+ "planningApplication": {
255
+ "yesNo": "No"
256
+ },
257
+ "requiredMaintenance": {
258
+ "yesNo": "No"
259
+ },
260
+ "listedBuildingApplication": {
261
+ "yesNo": "No"
262
+ },
263
+ "infrastructureProject": {
264
+ "yesNo": "No"
265
+ },
266
+ "partyWallAct": {
267
+ "yesNo": "Yes",
268
+ "details": "Party wall agreement in place",
269
+ "attachments": "Attached"
270
+ },
271
+ "otherNotices": {
272
+ "yesNo": "No"
273
+ }
274
+ },
275
+ "specialistIssues": {
276
+ "dryRotEtcTreatment": {
277
+ "yesNo": "No"
278
+ },
279
+ "containsAsbestos": {
280
+ "yesNo": "No"
281
+ },
282
+ "japaneseKnotweed": {
283
+ "yesNo": "No"
284
+ },
285
+ "subsidenceOrStructuralFault": {
286
+ "yesNo": "No"
287
+ },
288
+ "ongoingHealthOrSafetyIssue": {
289
+ "yesNo": "No"
290
+ }
291
+ },
292
+ "fixturesAndFittings": {
293
+ "itemsToRemove": {
294
+ "yesNo": "No"
295
+ },
296
+ "itemsToInclude": {
297
+ "yesNo": "No"
298
+ }
299
+ },
300
+ "waterAndDrainage": {
301
+ "water": {
302
+ "mainsWater": {
303
+ "yesNo": "To be connected",
304
+ "dateToBeConnected": "2022-12-15",
305
+ "supplier": "Northumbria Water"
306
+ }
307
+ },
308
+ "drainage": {
309
+ "mainsSurfaceWaterDrainage": {
310
+ "yesNo": "Yes"
311
+ },
312
+ "mainsFoulDrainage": {
313
+ "yesNo": "No",
314
+ "sustainableDrainageSystem": { "yesNo": "No" },
315
+ "septicTank": {
316
+ "yesNo": "Yes",
317
+ "details": "Last emptied on 1 Jan 2022",
318
+ "dateReplaced": "2022-01-01",
319
+ "dateLastEmptied": "2022-01-01"
320
+ },
321
+ "cesspit": { "yesNo": "No" },
322
+ "sewerageTreatmentPlant": { "yesNo": "No" },
323
+ "otherConnectedProperties": { "yesNo": "No" },
324
+ "yearSystemInstalled": 1980,
325
+ "plantOnOtherLand": { "yesNo": "No" },
326
+ "plantRegistered": { "yesNo": "No" },
327
+ "plantDrainsIntoWaterway": {
328
+ "yesNo": "Yes",
329
+ "dischargeCompliesWithGBR": "Yes"
330
+ }
331
+ }
332
+ },
333
+ "maintenanceAgreements": {
334
+ "yesNo": "No"
335
+ }
336
+ },
337
+ "connectedUtilities": {
338
+ "mainsElectricity": {
339
+ "yesNo": "Yes",
340
+ "supplier": "Octopus Energy"
341
+ },
342
+ "mainsGas": {
343
+ "yesNo": "Yes",
344
+ "supplier": "Octopus Energy"
345
+ },
346
+ "lpg": {
347
+ "yesNo": "No"
348
+ },
349
+ "oil": {
350
+ "yesNo": "No"
351
+ },
352
+ "telephone": {
353
+ "yesNo": "Yes",
354
+ "supplier": "EE"
355
+ },
356
+ "cableSatelliteTV": {
357
+ "yesNo": "Yes",
358
+ "supplier": "Sky"
359
+ },
360
+ "broadband": {
361
+ "yesNo": "Yes",
362
+ "supplier": "EE"
363
+ },
364
+ "solarPanels": {
365
+ "yesNo": "No"
366
+ },
367
+ "otherServices": {
368
+ "yesNo": "No"
369
+ },
370
+ "maintenanceAgreements": {
371
+ "yesNo": "No"
372
+ }
373
+ },
374
+ "centralHeating": {
375
+ "hasCentralHeating": "Yes",
376
+ "centralHeatingDetails": {
377
+ "boilerInstallationCertificate": {
378
+ "yesNo": "Yes",
379
+ "details": "Certified installation",
380
+ "attachments": "To follow"
381
+ },
382
+ "heatingInGoodWorkingOrder": {
383
+ "yesNo": "Yes"
384
+ },
385
+ "centralHeatingFuel": {
386
+ "centralHeatingFuelType": "Other",
387
+ "otherCentralHeatingFuelType": "Ground-source Heat Pump"
388
+ },
389
+ "centralHeatingInstalled": "2016-04-20",
390
+ "heatingLastServicedDate": "2021-03-26",
391
+ "heatingLastServicedReport": "To follow"
392
+ }
393
+ },
394
+ "insurance": {
395
+ "isInsured": "Yes",
396
+ "difficultiesObtainingInsurance": {
397
+ "abnormalRiseInPremiums": {
398
+ "yesNo": "Yes",
399
+ "details": "Very history"
400
+ },
401
+ "subjectToHighExcesses": { "yesNo": "No" },
402
+ "subjectToUnusualConditions": { "yesNo": "No" },
403
+ "refused": { "yesNo": "Yes", "details": "Much refuse" }
404
+ },
405
+ "insuranceClaims": {
406
+ "yesNo": "No"
407
+ }
408
+ },
409
+ "boundaries": {
410
+ "partOutsideLegalOwnership": {
411
+ "yesNo": "No"
412
+ },
413
+ "partOnSeparateSiteOrDeed": {
414
+ "yesNo": "No"
415
+ },
416
+ "boundariesDifferFromTitlePlan": {
417
+ "yesNo": "No"
418
+ },
419
+ "boundaryAlterationProposal": {
420
+ "yesNo": "No"
421
+ }
422
+ },
423
+ "rightsAndInformalArrangements": {
424
+ "sharedContributions": {
425
+ "yesNo": "No"
426
+ },
427
+ "neighbouringLandRights": {
428
+ "yesNo": "No"
429
+ },
430
+ "accessRestrictionAttempts": {
431
+ "yesNo": "No"
432
+ },
433
+ "rightsOrArrangements": {
434
+ "publicRightOfWay": {
435
+ "yesNo": "No"
436
+ },
437
+ "rightsOfLight": {
438
+ "yesNo": "No"
439
+ },
440
+ "rightsOfSupport": {
441
+ "yesNo": "No"
442
+ },
443
+ "rightsCreatedThroughCustom": {
444
+ "yesNo": "No"
445
+ },
446
+ "minesAndMinerals": {
447
+ "yesNo": "No"
448
+ },
449
+ "churchChancel": {
450
+ "yesNo": "No"
451
+ },
452
+ "rightsToTakeFromLand": {
453
+ "yesNo": "Yes",
454
+ "details": "Annual gold mining festival"
455
+ },
456
+ "otherRights": {
457
+ "yesNo": "No"
458
+ }
459
+ }
460
+ },
461
+ "environmentalIssues": {
462
+ "flooding": {
463
+ "floodRiskReport": { "yesNo": "No" },
464
+ "hasBeenFlooded": "Yes",
465
+ "details": "Minor basement flood",
466
+ "typeOfFlooding": {
467
+ "groundWater": "No",
468
+ "sewer": "Yes",
469
+ "surfaceWater": "No",
470
+ "coastal": "No",
471
+ "river": "No",
472
+ "other": {
473
+ "yesNo": "No"
474
+ }
475
+ }
476
+ },
477
+ "radon": {
478
+ "radonTest": { "yesNo": "No" },
479
+ "remedialMeasuresOnConstruction": { "yesNo": "No" }
480
+ },
481
+ "groundStability": {
482
+ "groundStabilityRiskReport": {
483
+ "recommendedActionIndicator": "Yes"
484
+ }
485
+ },
486
+ "otherEnvironmental": {
487
+ "yesNo": "No"
488
+ }
489
+ },
490
+ "otherIssues": {
491
+ "excessiveNoise": {
492
+ "yesNo": "No"
493
+ },
494
+ "crime": {
495
+ "yesNo": "No"
496
+ },
497
+ "cautionOrConviction": {
498
+ "yesNo": "No"
499
+ },
500
+ "failedTransactionsInLast12Months": {
501
+ "yesNo": "No"
502
+ }
503
+ },
504
+ "additionalInformation": {
505
+ "restrictionsOnUseNotCompliedWith": {
506
+ "yesNo": "No"
507
+ },
508
+ "otherMaterialIssue": {
509
+ "yesNo": "No"
510
+ },
511
+ "otherCharges": {
512
+ "yesNo": "No"
513
+ }
514
+ },
515
+ "consumerProtectionRegulationsDeclaration": {
516
+ "consumerProtectionRegulationsResponse": true
517
+ }
518
+ },
519
+ "additionalLegalInfo": {
520
+ "legalOwners": {
521
+ "namesOfLegalOwners": [
522
+ {
523
+ "ownerType": "Private individual",
524
+ "firstName": "Peter",
525
+ "lastName": "Hetherington-Smythe"
526
+ },
527
+ {
528
+ "ownerType": "Private individual",
529
+ "firstName": "Clarissa",
530
+ "middleNames": "Jane",
531
+ "lastName": "Hetherington-Smythe"
532
+ }
533
+ ]
534
+ },
535
+ "sellersCapacity": { "capacity": "Legal Owner" },
536
+ "legalBoundaries": {
537
+ "ownership": {
538
+ "areBoundariesUniform": "Yes",
539
+ "uniformBoundaries": {
540
+ "left": "Neighbour",
541
+ "right": "Seller",
542
+ "rear": "Neighbour",
543
+ "front": "Not known"
544
+ }
545
+ },
546
+ "haveBoundaryFeaturesMoved": {
547
+ "yesNo": "Yes",
548
+ "details": "Moved a bit to the lefts"
549
+ },
550
+ "adjacentLandIncluded": { "yesNo": "Yes", "details": "Some movements" },
551
+ "flyingFreehold": { "yesNo": "Yes", "details": "Some flying stuff" }
552
+ },
553
+ "servicesCrossing": {
554
+ "pipesWiresCablesDrainsToProperty": { "yesNo": "No" },
555
+ "pipesWiresCablesDrainsFromProperty": { "yesNo": "No" },
556
+ "formalOrInformalAgreements": { "yesNo": "No" }
557
+ },
558
+ "energyAndMeters": {
559
+ "testedByQualifiedElectrician": {
560
+ "yesNo": "Yes",
561
+ "yearTested": 2015,
562
+ "attachments": "To follow"
563
+ },
564
+ "electricalWorkSince2005": {
565
+ "yesNo": "Yes",
566
+ "yearWorkCarriedOut": 2016,
567
+ "details": "New fuse box",
568
+ "attachments": "To follow"
569
+ },
570
+ "solarPanels": { "hasSolarPanels": "No" }
571
+ },
572
+ "smartHomeSystems": { "hasSmartHomeSystems": "No" },
573
+ "guaranteesWarrantiesAndIndemnityInsurances": {
574
+ "hasValidGuaranteesOrWarranties": "No"
575
+ },
576
+ "occupiers": {
577
+ "sellerLivesAtProperty": { "yesNo": "Yes" },
578
+ "othersAged17OrOver": {
579
+ "hasOthersAged17OrOver": "Yes",
580
+ "aged17OrOverNames": "John Smith (42), Muhammed Tawfik (32)",
581
+ "aged17OrOverTenantsOrLodgers": { "yesNo": "No" },
582
+ "vacantPossession": {
583
+ "soldWithVacantPossession": "Yes",
584
+ "aged17OrOverAgreedToLeave": { "yesNo": "Yes" },
585
+ "aged17OrOverWillSignToConfirmWillVacate": { "yesNo": "Yes" }
586
+ }
587
+ }
588
+ },
589
+ "completionAndMoving": {
590
+ "sellerWillEnsure": {
591
+ "removeRubbish": true,
592
+ "replaceLightFittings": true,
593
+ "takeReasonableCare": true,
594
+ "leaveKeys": true
595
+ },
596
+ "otherPropertyInChain": { "yesNo": "No" },
597
+ "moveRestrictionDates": {
598
+ "yesNo": "Yes",
599
+ "details": "On holiday 1-15 Aug 23"
600
+ },
601
+ "digitalPropertyLogbook": { "yesNo": "No" },
602
+ "sufficientToRepayAllMortgages": { "yesNo": "Yes" }
603
+ },
604
+ "confirmationOfAccuracyByOwners": {
605
+ "confirmWillProvideAdditionalDocumentation": true,
606
+ "confirmInformationIsAccurate": true
607
+ }
608
+ },
609
+ "titlesToBeSold": [
610
+ {
611
+ "titleNumber": "HD221222",
612
+ "titleExtents": "{'type':'Polygon','coordinates':[[[-2.5787833768108985,51.48576273335823],[-2.578739952913823,51.48580251052463],[-2.578631396439736,51.48575988696783],[-2.578605326085179,51.48574832663401],[-2.578513422397467,51.48571281401381],[-2.578493883879733,51.48570526761721],[-2.578529455342914,51.48567092421916],[-2.578534427612858,51.485665504755744],[-2.578553966121065,51.485673051145575],[-2.5786436981835235,51.48570767529821],[-2.578671214351269,51.48571967806404],[-2.5787833768108985,51.48576273335823]]]}",
613
+ "registerExtract": {
614
+ "OCSummaryData": {
615
+ "Title": {
616
+ "TitleNumber": "HD221222",
617
+ "ClassOfTitleCode": "10",
618
+ "TitleRegistrationDetails": {
619
+ "LatestEditionDate": "2020-11-24",
620
+ "RegistrationDate": "1991-11-11",
621
+ "DistrictName": "ST ALBANS",
622
+ "PostcodeZone": {
623
+ "Postcode": "AL3 5AF"
624
+ },
625
+ "LandRegistryOfficeName": "Leicester Office",
626
+ "AdministrativeArea": "HERTFORDSHIRE"
627
+ },
628
+ "CommonholdIndicator": "false"
629
+ },
630
+ "OfficialCopyDateTime": "2021-12-16T08:39:52",
631
+ "PropertyAddress": {
632
+ "PostcodeZone": {
633
+ "Postcode": "AL3 5AF"
634
+ },
635
+ "AddressLine": {
636
+ "Line": ["47 Park Road", "Harpenden"]
637
+ }
638
+ },
639
+ "Proprietorship": {
640
+ "RegisteredProprietorParty": [
641
+ {
642
+ "PrivateIndividual": {
643
+ "Name": {
644
+ "SurnameName": "Hetherington-Smythe",
645
+ "ForenamesName": "Peter Ronald"
646
+ }
647
+ },
648
+ "Address": {
649
+ "PostcodeZone": {
650
+ "Postcode": "AL3 5AF"
651
+ },
652
+ "AddressLine": {
653
+ "Line": ["47 Park Road", "Harpenden"]
654
+ }
655
+ }
656
+ },
657
+ {
658
+ "Address": {
659
+ "AddressLine": {
660
+ "Line": ["47 Park Road", "Harpenden"]
661
+ },
662
+ "PostcodeZone": {
663
+ "Postcode": "AL3 5AF"
664
+ }
665
+ },
666
+ "PrivateIndividual": {
667
+ "Name": {
668
+ "ForenamesName": "Clarissa Jane",
669
+ "SurnameName": "Hetherington-Smythe"
670
+ }
671
+ }
672
+ }
673
+ ],
674
+ "CurrentProprietorshipDate": "2020-11-24"
675
+ },
676
+ "EditionDate": "2020-11-24",
677
+ "DocumentDetails": {
678
+ "Document": {
679
+ "EntryNumber": ["B3", "C2", "C3", "C4"],
680
+ "PlanOnlyIndicator": "false",
681
+ "RegisterDescription": "Charge",
682
+ "DocumentType": "50",
683
+ "DocumentDate": "2020-11-03"
684
+ }
685
+ },
686
+ "RestrictionDetails": {
687
+ "RestrictionEntry": {
688
+ "ChargeRestriction": {
689
+ "ChargeID": "1",
690
+ "EntryDetails": {
691
+ "EntryNumber": "3",
692
+ "Infills": {
693
+ "ChargeDate": "2020-11-03",
694
+ "ChargeParty": "Barclays Bank UK PLC"
695
+ },
696
+ "SubRegisterCode": "B",
697
+ "EntryText": "RESTRICTION: No disposition of the registered estate by the proprietor of the registered estate is to be registered without a written consent signed by the proprietor for the time being of the Charge dated 3 November 2020 in favour of Barclays Bank UK PLC referred to in the Charges Register."
698
+ },
699
+ "RestrictionTypeCode": "30"
700
+ }
701
+ }
702
+ },
703
+ "PricePaidEntry": {
704
+ "EntryDetails": {
705
+ "EntryText": "The price stated to have been paid on 3 November 2020 was £1,100,000.",
706
+ "SubRegisterCode": "B",
707
+ "EntryNumber": "2",
708
+ "Infills": {
709
+ "Date": "2020-11-03",
710
+ "Amount": "£1,260,000"
711
+ },
712
+ "RegistrationDate": "2020-11-24"
713
+ }
714
+ },
715
+ "Charge": {
716
+ "ChargeEntry": {
717
+ "RegisteredCharge": {
718
+ "EntryDetails": {
719
+ "SubRegisterCode": "C",
720
+ "RegistrationDate": "2020-11-24",
721
+ "EntryText": "REGISTERED CHARGE dated 3 November 2020.",
722
+ "Infills": {
723
+ "ChargeDate": "2020-11-03"
724
+ },
725
+ "EntryNumber": "2"
726
+ }
727
+ },
728
+ "ChargeDate": "2020-11-03",
729
+ "ChargeID": "1",
730
+ "ChargeProprietor": {
731
+ "ChargeeParty": {
732
+ "Organization": {
733
+ "Name": "Barclays Bank UK PLC"
734
+ },
735
+ "Address": {
736
+ "AddressLine": {
737
+ "Line": ["P.O. Box 187", "Leeds"]
738
+ },
739
+ "PostcodeZone": {
740
+ "Postcode": "LS11 1AN"
741
+ }
742
+ }
743
+ },
744
+ "EntryDetails": {
745
+ "SubRegisterCode": "C",
746
+ "RegistrationDate": "2020-11-24",
747
+ "EntryNumber": "3",
748
+ "EntryText": "Proprietor: BARCLAYS BANK UK PLC (Co. Regn. No. 9740322) of P.O. Box 187, Leeds LS11 1AN."
749
+ }
750
+ }
751
+ }
752
+ },
753
+ "RegisterEntryIndicators": {
754
+ "UnidentifiedEntryIndicator": "false",
755
+ "SubChargeIndicator": "false",
756
+ "DiscountChargeIndicator": "false",
757
+ "ChargeIndicator": "true",
758
+ "PropertyDescriptionNotesIndicator": "false",
759
+ "ChargeRelatedRestrictionIndicator": "false",
760
+ "BankruptcyIndicator": "false",
761
+ "MultipleChargeIndicator": "false",
762
+ "HomeRightsChangeOfAddressIndicator": "false",
763
+ "CCBIIndicator": "false",
764
+ "AgreedNoticeIndicator": "false",
765
+ "VendorsLienIndicator": "false",
766
+ "RightOfPreEmptionIndicator": "false",
767
+ "CreditorsNoticeIndicator": "false",
768
+ "CautionIndicator": "false",
769
+ "ChargeRestrictionIndicator": "true",
770
+ "ScheduleOfLeasesIndicator": "false",
771
+ "UnilateralNoticeIndicator": "false",
772
+ "DeathOfProprietorIndicator": "false",
773
+ "RentChargeIndicator": "false",
774
+ "EquitableChargeIndicator": "false",
775
+ "ChargeeIndicator": "true",
776
+ "DeedOfPostponementIndicator": "false",
777
+ "NonChargeRestrictionIndicator": "false",
778
+ "GreenOutEntryIndicator": "false",
779
+ "UnilateralNoticeBeneficiaryIndicator": "false",
780
+ "NotedChargeIndicator": "false",
781
+ "PricePaidIndicator": "true",
782
+ "HomeRightsIndicator": "false",
783
+ "LeaseHoldTitleIndicator": "false"
784
+ }
785
+ },
786
+ "OCRegisterData": {
787
+ "ChargesRegister": {
788
+ "RegisterEntry": [
789
+ {
790
+ "EntryNumber": "1",
791
+ "EntryType": "Restrictive Covenants/Stipulations - Deed",
792
+ "EntryText": [
793
+ "A Conveyance of the land in this title dated 7 June 1946 made between (1) Jesse Catton (Vendor) and (2) Henry Dick Goodman Cunnold (Purchaser) contains the following covenants:-",
794
+ "\"THE Purchaser for himself his successors in title and assigns and to the intent that this covenant will run with the land but not so that the Purchaser is liable after he has parted with the same hereby covenants with the Vendor and his successors in title that he the Purchaser and his successors in title will observe and perform the covenants contained in the Schedule hereto.",
795
+ "THE SCHEDULE before referred to",
796
+ "(1) For ever to maintain a proper fence on the side of the boundary of the land marked !\"T\" within the boundary on the said plan.",
797
+ "(2) To observe a building line of fifteen feet from the boundary of the land fronting Park Road",
798
+ "(3) That the house or any buildings erected on the said land shall not at any time be used for the purpose of any trade manufacture or business of any description or as an asylum hospital or other institution but are to be used only as a private dwellinghouse or professional residence of a Physician Surgeon or Solicitor.",
799
+ "(4) That only one such dwellinghouse shall be on the said piece of land.\"",
800
+ "NOTE: The North Eastern boundary of the land in this title is marked \"T\""
801
+ ],
802
+ "EntryDate": "1991-11-11"
803
+ },
804
+ {
805
+ "EntryText": "REGISTERED CHARGE dated 3 November 2020.",
806
+ "EntryType": "Registered Charges",
807
+ "EntryDate": "2020-11-24",
808
+ "EntryNumber": "2"
809
+ },
810
+ {
811
+ "EntryNumber": "3",
812
+ "EntryDate": "2020-11-24",
813
+ "EntryType": "Chargee",
814
+ "EntryText": "Proprietor: BARCLAYS BANK UK PLC (Co. Regn. No. 9740322) of P.O. Box 187, Leeds LS11 1AN."
815
+ },
816
+ {
817
+ "EntryType": "Obligation",
818
+ "EntryDate": "2020-11-24",
819
+ "EntryNumber": "4",
820
+ "EntryText": "The proprietor of the Charge dated 3 November 2020 referred to above is under an obligation to make further advances. These advances will have priority to the extent afforded by section 49(3) Land Registration Act 2002."
821
+ }
822
+ ]
823
+ },
824
+ "PropertyRegister": {
825
+ "DistrictDetails": {
826
+ "EntryText": "HERTFORDSHIRE : ST ALBANS"
827
+ },
828
+ "RegisterEntry": [
829
+ {
830
+ "EntryType": "Property Description",
831
+ "EntryNumber": "1",
832
+ "EntryText": "The Freehold land shown edged with red on the plan of the above Title filed at the Registry and being 47 Park Road, Harpenden (AL3 5AF).",
833
+ "EntryDate": "1991-11-11"
834
+ },
835
+ {
836
+ "EntryNumber": "2",
837
+ "EntryText": [
838
+ "The Conveyance dated 7 June 1946 referred to in the Charges Register contains the following provision:-",
839
+ "\"IT IS hereby declared that the Purchaser shall not be entitled to any right of light or air which will restrict the free use of the adjoining property of the Vendor for building or other purpose.\""
840
+ ],
841
+ "EntryDate": "1991-11-11",
842
+ "EntryType": "Provisions"
843
+ }
844
+ ]
845
+ },
846
+ "ProprietorshipRegister": {
847
+ "RegisterEntry": [
848
+ {
849
+ "EntryDate": "2020-11-24",
850
+ "EntryText": "PROPRIETOR: PETER RONALD HETHERINGTON-SMYTH and CLARISSA JANE HETHERINGTON-SMYTH of 47 Park Road, Harpenden AL3 5AF.",
851
+ "EntryType": "Proprietor",
852
+ "EntryNumber": "1"
853
+ },
854
+ {
855
+ "EntryText": "The price stated to have been paid on 3 November 2020 was £1,260,000.",
856
+ "EntryType": "Price Paid",
857
+ "EntryDate": "2020-11-24",
858
+ "EntryNumber": "2"
859
+ },
860
+ {
861
+ "EntryNumber": "3",
862
+ "EntryDate": "2020-11-24",
863
+ "EntryType": "Charge Restriction - B Register",
864
+ "EntryText": "RESTRICTION: No disposition of the registered estate by the proprietor of the registered estate is to be registered without a written consent signed by the proprietor for the time being of the Charge dated 3 November 2020 in favour of Barclays Bank UK PLC referred to in the Charges Register."
865
+ }
866
+ ]
867
+ }
868
+ }
869
+ }
870
+ }
871
+ ],
872
+ "searches": [
873
+ {
874
+ "displayName": "Groundsure Homebuyers",
875
+ "productCode": "GSEnviro",
876
+ "providerName": "TM Group",
877
+ "status": "Ordered",
878
+ "orderDate": "2022-10-06T08:55:49.483",
879
+ "expectedDeliveryDate": "2022-10-10T08:55:49",
880
+ "contentTypes": ["Environmental Risks"]
881
+ },
882
+ {
883
+ "displayName": "Drainage and Water Enquiry (Residential)",
884
+ "productCode": "Con29DW",
885
+ "providerName": "TM Group",
886
+ "status": "Ordered",
887
+ "orderDate": "2022-10-06T08:55:49.5",
888
+ "expectedDeliveryDate": "2022-10-13T08:55:49",
889
+ "contentTypes": ["Drainage and Water Search"]
890
+ },
891
+ {
892
+ "displayName": "Environmental Risk Flags",
893
+ "productCode": "TMRiskFlags",
894
+ "providerName": "TM Group",
895
+ "status": "Delivered",
896
+ "reportDate": "2022-10-13T08:55:49",
897
+ "contentTypes": ["Environmental Risks"]
898
+ }
899
+ ]
900
+ }
901
+ }