@pdtf/schemas 3.6.0-dev.7 → 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 (130) 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 +225 -47
  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
@@ -0,0 +1,4519 @@
1
+ transactionId
2
+ externalIds{*}
3
+ status
4
+ participants[
5
+ name
6
+ firstName
7
+ middleName
8
+ lastName
9
+ maidenName
10
+ preferredName
11
+ dateOfBirth
12
+ phone
13
+ email
14
+ address
15
+ buildingNumber
16
+ buildingName
17
+ subBuilding
18
+ street
19
+ line1
20
+ line2
21
+ line3
22
+ town
23
+ postcode
24
+ homeNation
25
+ countryCode
26
+ organisation
27
+ organisationReference
28
+ role
29
+ externalIds{*}
30
+ participantStatus
31
+ verification
32
+ identity
33
+ status
34
+ result
35
+ reports[
36
+ reportName
37
+ result
38
+ details
39
+ ]
40
+ antiMoneyLaundering
41
+ status
42
+ result
43
+ reports[
44
+ reportName
45
+ result
46
+ details
47
+ ]
48
+ sourceOfFunds
49
+ status
50
+ result
51
+ reports[
52
+ reportName
53
+ result
54
+ details
55
+ ]
56
+ offerId
57
+ sellersCapacity
58
+ capacity
59
+ sellersCapacityDetails
60
+ attachments
61
+ companyName
62
+ companyNumber
63
+ countryOfIncorporation
64
+ dateBecameOwnerOrAuthority
65
+ ]
66
+ propertyPack
67
+ address
68
+ buildingNumber
69
+ buildingName
70
+ subBuilding
71
+ street
72
+ line1
73
+ line2
74
+ line3
75
+ town
76
+ postcode
77
+ homeNation
78
+ countryCode
79
+ uprn
80
+ location
81
+ latitude
82
+ longitude
83
+ bng
84
+ easting
85
+ northing
86
+ ruralUrbanClassification
87
+ ruralUrbanCode
88
+ region
89
+ parish
90
+ outputArea
91
+ googleStreetViewPOV
92
+ heading
93
+ pitch
94
+ zoom
95
+ lat
96
+ lng
97
+ localAuthority
98
+ localAuthorityName
99
+ districtCouncil
100
+ countyCouncil
101
+ unitaryAuthority
102
+ localAuthorityReference
103
+ councilSearchTurnaroundTimeInWorkingDays
104
+ regulatedSearchTurnaroundTimeInWorkingDays
105
+ priceInformation
106
+ price
107
+ priceQualifier
108
+ disposal
109
+ saleAtUndervalue
110
+ lettingInformation
111
+ rent
112
+ rentFrequency
113
+ securityDeposit
114
+ holdingDeposit
115
+ summaryDescription
116
+ marketingTenure
117
+ media[
118
+ mediaType
119
+ mediaUrl
120
+ caption
121
+ ]
122
+ buildInformation
123
+ building
124
+ builtForm
125
+ propertyType
126
+ otherType
127
+ numberOfFloors
128
+ entranceFloor
129
+ hasLift
130
+ overCommercialPremises
131
+ isLocatedOverCommercialPremises
132
+ detailsAnalysis
133
+ details
134
+ internalArea
135
+ area
136
+ units
137
+ yearOfBuild
138
+ isNewBuild
139
+ yesNo
140
+ isHMO
141
+ isStudentAccommodation
142
+ roomDimensions
143
+ hasFloorplan
144
+ attachments
145
+ rooms[
146
+ roomName
147
+ length
148
+ width
149
+ units
150
+ dimensionDetails
151
+ ]
152
+ residentialPropertyFeatures
153
+ bedrooms
154
+ bathrooms
155
+ receptions
156
+ kitchens
157
+ diningAreas
158
+ outsideAreas[]
159
+ nearbyFacilities
160
+ schools[
161
+ name
162
+ contact
163
+ address
164
+ line1
165
+ line2
166
+ line3
167
+ town
168
+ postcode
169
+ telephone
170
+ emailAddress
171
+ website
172
+ ofstedRating
173
+ pupils
174
+ distanceInMiles
175
+ ageRange
176
+ religiousCharacter
177
+ schoolType
178
+ nursery
179
+ primary
180
+ secondary
181
+ college
182
+ private
183
+ otherRating
184
+ ]
185
+ transport[
186
+ name
187
+ transportType
188
+ latitude
189
+ longitude
190
+ distanceInMiles
191
+ ]
192
+ healthCare[
193
+ name
194
+ typeOfHealthCare
195
+ contact
196
+ address
197
+ line1
198
+ line2
199
+ line3
200
+ town
201
+ postcode
202
+ telephone
203
+ emailAddress
204
+ website
205
+ containsAccidentAndEmergencyFacility
206
+ distanceInMiles
207
+ specialties[]
208
+ openingHours[
209
+ day
210
+ hours
211
+ ]
212
+ ]
213
+ delayFactors
214
+ hasDelayFactors
215
+ yesNo
216
+ details
217
+ attachments
218
+ ownership
219
+ numberOfSellers
220
+ numberOfNonUkResidentSellers
221
+ outstandingMortgage
222
+ existingLender
223
+ hasHelpToBuyEquityLoan
224
+ isFirstRegistration
225
+ isLimitedCompanySale
226
+ ownershipsToBeTransferred[
227
+ titleNumber
228
+ titlePropertyDescription
229
+ ownershipType
230
+ estateRentcharges
231
+ yesNo
232
+ details
233
+ amount
234
+ titleRestrictions
235
+ yesNo
236
+ details
237
+ wholeFreeholdForSale
238
+ yesNo
239
+ details
240
+ managedFreeholdOrCommonholdInformation
241
+ contactDetails
242
+ rentchargeOwner
243
+ contact
244
+ nameOrOrganisation
245
+ address
246
+ line1
247
+ line2
248
+ line3
249
+ town
250
+ postcode
251
+ telephone
252
+ emailAddress
253
+ bankDetails
254
+ accountName
255
+ sortCode
256
+ accountNumber
257
+ reference
258
+ feeType
259
+ managementCompany
260
+ contact
261
+ nameOrOrganisation
262
+ address
263
+ line1
264
+ line2
265
+ line3
266
+ town
267
+ postcode
268
+ telephone
269
+ emailAddress
270
+ bankDetails
271
+ accountName
272
+ sortCode
273
+ accountNumber
274
+ reference
275
+ feeType
276
+ managingAgent
277
+ contact
278
+ nameOrOrganisation
279
+ address
280
+ line1
281
+ line2
282
+ line3
283
+ town
284
+ postcode
285
+ telephone
286
+ emailAddress
287
+ appointedBy
288
+ bankDetails
289
+ accountName
290
+ sortCode
291
+ accountNumber
292
+ reference
293
+ feeType
294
+ legalRepresentative
295
+ contact
296
+ nameOrOrganisation
297
+ address
298
+ line1
299
+ line2
300
+ line3
301
+ town
302
+ postcode
303
+ telephone
304
+ emailAddress
305
+ appointedBy
306
+ noticeOfTransferAndCharge
307
+ rentchargeOwner
308
+ isApplicableParty
309
+ feeIncludingVAT
310
+ noticeViaEmail
311
+ managementCompany
312
+ isApplicableParty
313
+ feeIncludingVAT
314
+ noticeViaEmail
315
+ managingAgent
316
+ isApplicableParty
317
+ feeIncludingVAT
318
+ noticeViaEmail
319
+ legalRepresentative
320
+ isApplicableParty
321
+ feeIncludingVAT
322
+ noticeViaEmail
323
+ other
324
+ isApplicableParty
325
+ feeIncludingVAT
326
+ noticeViaEmail
327
+ contact
328
+ nameOrOrganisation
329
+ address
330
+ line1
331
+ line2
332
+ line3
333
+ town
334
+ postcode
335
+ telephone
336
+ emailAddress
337
+ capacity
338
+ otherDetailsRequired
339
+ areOtherDetailsRequired
340
+ details
341
+ collectsServiceCharges
342
+ dealsWithDayToDayMaintenanceOfManagedArea
343
+ organisesManagedAreaInsurance
344
+ transferAndRegistration
345
+ deedOfCovenantRequired
346
+ yesNoNotKnown
347
+ costsApplicableToTheDeed
348
+ personWhoDealsWithTheDeedOfCovenant
349
+ awareOfConsents
350
+ yesNo
351
+ details
352
+ requirementsToBeMemberOfManagementCompany
353
+ yesNo
354
+ details
355
+ procedureForObtainingCertificate
356
+ serviceCharge
357
+ annualServiceCharge
358
+ hasFixedRentcharge
359
+ largeAdditionalExpense
360
+ yesNo
361
+ details
362
+ serviceChargePaidUpToDate
363
+ yesNo
364
+ details
365
+ lastDemandPeriod
366
+ from
367
+ to
368
+ propertiesContribute
369
+ residentialFreehold
370
+ residentialLeasehold
371
+ commercial
372
+ doAllPropertiesContribute
373
+ yesNo
374
+ details
375
+ excessPaymentAnticipated
376
+ yesNo
377
+ details
378
+ hasInabilityToCollectAffectedMaintenance
379
+ yesNo
380
+ details
381
+ reserveFund
382
+ yesNo
383
+ amount
384
+ fromTheOwners
385
+ forTheManagedAreas
386
+ sufficentToCoverKnownExpenditure
387
+ yesNo
388
+ details
389
+ lastDecoratedPeriod
390
+ internally
391
+ from
392
+ to
393
+ externally
394
+ from
395
+ to
396
+ worksProposed
397
+ yesNo
398
+ details
399
+ increaseInServiceChargeAnticipated
400
+ yesNo
401
+ details
402
+ outstandingServiceChargeConsultation
403
+ yesNo
404
+ details
405
+ japaneseKnotweedAffectingManagedAreas
406
+ yesNo
407
+ details
408
+ transferFees
409
+ yesNo
410
+ details
411
+ insurance
412
+ managedAreaInsured
413
+ yesNo
414
+ premiumsPaidUpToDate
415
+ yesNo
416
+ details
417
+ lastDemandPeriod
418
+ from
419
+ to
420
+ claimsMade
421
+ yesNo
422
+ details
423
+ claimsAnticipated
424
+ yesNo
425
+ details
426
+ premiumIncludedInServiceCharge
427
+ yesNo
428
+ details
429
+ standardTermsAvailable
430
+ yesNo
431
+ details
432
+ nonComplianceWithConditions
433
+ yesNo
434
+ details
435
+ disputes
436
+ unresolvedDisputes
437
+ yesNo
438
+ details
439
+ breachOfTermsOfTransfer
440
+ yesNo
441
+ details
442
+ requiredDocuments
443
+ serviceChargeAccounts
444
+ managedAreasInsurancePolicy
445
+ serviceChargeEstimatesCurrent
446
+ serviceChargeEstimatesPrevious
447
+ proposedWorksNotices
448
+ additionalRegulationsNotInTransfer
449
+ deedOfCovenant
450
+ certificateOfCompliance
451
+ permissionToAlter
452
+ noticesServedOnOwner
453
+ asbestosSurvey
454
+ managedAreaFireRiskAssessment
455
+ memorandumAndArticles
456
+ managementCompanyAGMMinutes
457
+ feesForAdminServices
458
+ confirmation
459
+ response
460
+ capacity
461
+ leaseholdInformation
462
+ typeOfLeasehold
463
+ leaseholdType
464
+ otherLeaseholdType
465
+ sharedOwnership
466
+ isSharedOwnership
467
+ sharedOwnershipPercentage
468
+ sharedOwnershipRent
469
+ sharedOwnershipRentFrequency
470
+ leaseTerm
471
+ startYearOfLease
472
+ lengthOfLeaseInYears
473
+ contactDetails
474
+ contacts
475
+ landlord
476
+ contact
477
+ nameOrOrganisation
478
+ address
479
+ line1
480
+ line2
481
+ line3
482
+ town
483
+ postcode
484
+ telephone
485
+ emailAddress
486
+ bankDetails
487
+ accountName
488
+ sortCode
489
+ accountNumber
490
+ reference
491
+ feeType
492
+ rentchargeOwner
493
+ contact
494
+ nameOrOrganisation
495
+ address
496
+ line1
497
+ line2
498
+ line3
499
+ town
500
+ postcode
501
+ telephone
502
+ emailAddress
503
+ bankDetails
504
+ accountName
505
+ sortCode
506
+ accountNumber
507
+ reference
508
+ feeType
509
+ managementCompany
510
+ contact
511
+ nameOrOrganisation
512
+ address
513
+ line1
514
+ line2
515
+ line3
516
+ town
517
+ postcode
518
+ telephone
519
+ emailAddress
520
+ bankDetails
521
+ accountName
522
+ sortCode
523
+ accountNumber
524
+ reference
525
+ feeType
526
+ rightToManageCompany
527
+ contact
528
+ nameOrOrganisation
529
+ address
530
+ line1
531
+ line2
532
+ line3
533
+ town
534
+ postcode
535
+ emailAddress
536
+ telephone
537
+ freeholder
538
+ contact
539
+ nameOrOrganisation
540
+ address
541
+ line1
542
+ line2
543
+ line3
544
+ town
545
+ postcode
546
+ emailAddress
547
+ telephone
548
+ headLeaseHolder
549
+ contact
550
+ nameOrOrganisation
551
+ address
552
+ line1
553
+ line2
554
+ line3
555
+ town
556
+ postcode
557
+ emailAddress
558
+ telephone
559
+ managingAgent
560
+ contact
561
+ nameOrOrganisation
562
+ address
563
+ line1
564
+ line2
565
+ line3
566
+ town
567
+ postcode
568
+ telephone
569
+ emailAddress
570
+ appointedBy
571
+ bankDetails
572
+ accountName
573
+ sortCode
574
+ accountNumber
575
+ reference
576
+ feeType
577
+ residentTenantsAssociation
578
+ contact
579
+ nameOrOrganisation
580
+ address
581
+ line1
582
+ line2
583
+ line3
584
+ town
585
+ postcode
586
+ telephone
587
+ emailAddress
588
+ bankDetails
589
+ accountName
590
+ sortCode
591
+ accountNumber
592
+ reference
593
+ feeType
594
+ legalRepresentative
595
+ contact
596
+ nameOrOrganisation
597
+ address
598
+ line1
599
+ line2
600
+ line3
601
+ town
602
+ postcode
603
+ telephone
604
+ emailAddress
605
+ appointedBy
606
+ serviceContactAssignments
607
+ noticeOfAssignmentAndCharge
608
+ landlord
609
+ isApplicableParty
610
+ feeIncludingVAT
611
+ noticeViaEmail
612
+ managementCompany
613
+ isApplicableParty
614
+ feeIncludingVAT
615
+ noticeViaEmail
616
+ managingAgent
617
+ isApplicableParty
618
+ feeIncludingVAT
619
+ noticeViaEmail
620
+ other
621
+ isApplicableParty
622
+ feeIncludingVAT
623
+ noticeViaEmail
624
+ contact
625
+ nameOrOrganisation
626
+ address
627
+ line1
628
+ line2
629
+ line3
630
+ town
631
+ postcode
632
+ telephone
633
+ emailAddress
634
+ capacity
635
+ noticeOfTransferAndCharge
636
+ rentchargeOwner
637
+ isApplicableParty
638
+ feeIncludingVAT
639
+ noticeViaEmail
640
+ managementCompany
641
+ isApplicableParty
642
+ feeIncludingVAT
643
+ noticeViaEmail
644
+ managingAgent
645
+ isApplicableParty
646
+ feeIncludingVAT
647
+ noticeViaEmail
648
+ legalRepresentative
649
+ isApplicableParty
650
+ feeIncludingVAT
651
+ noticeViaEmail
652
+ other
653
+ isApplicableParty
654
+ feeIncludingVAT
655
+ noticeViaEmail
656
+ contact
657
+ nameOrOrganisation
658
+ address
659
+ line1
660
+ line2
661
+ line3
662
+ town
663
+ postcode
664
+ telephone
665
+ emailAddress
666
+ capacity
667
+ otherDetailsRequired
668
+ areOtherDetailsRequired
669
+ details
670
+ collectsGroundRent
671
+ collector
672
+ otherCollector
673
+ collectsServiceCharges
674
+ collectsbuildingInsurancePremiums
675
+ collector
676
+ otherCollector
677
+ dealsWithDayToDayMaintenanceOfManagedArea
678
+ organisesBuildingInsurance
679
+ dealsWithDayToDayMaintenanceOfBuilding
680
+ assignedContact
681
+ lesseeInCharge
682
+ nameOrOrganisation
683
+ address
684
+ line1
685
+ line2
686
+ line3
687
+ town
688
+ postcode
689
+ telephone
690
+ emailAddress
691
+ consents
692
+ changesInTermOfLease
693
+ isSellerAwareOfChanges
694
+ details
695
+ attachments
696
+ landlordConsents
697
+ isSellerAwareOfLandlordConsents
698
+ details
699
+ attachments
700
+ transferAndRegistration
701
+ deedOfCovenantRequired
702
+ yesNoNotKnown
703
+ costsApplicableToTheDeed
704
+ personWhoDealsWithTheDeedOfCovenant
705
+ licenceToAssignRequired
706
+ yesNo
707
+ requirements
708
+ awareOfConsents
709
+ yesNo
710
+ details
711
+ requirementsToBeMemberOfManagementCompany
712
+ yesNoNotApplicable
713
+ details
714
+ procedureForObtainingCertificate
715
+ groundRent
716
+ isGroundRentPayable
717
+ annualGroundRent
718
+ groundRentFrequency
719
+ mostRecentGroundRentDemandStatus
720
+ rentSubjectToIncrease
721
+ yesNo
722
+ rentReviewFrequency
723
+ rentIncreaseCalculated
724
+ groundRentPaidUpToDate
725
+ yesNoNotApplicable
726
+ details
727
+ lastDemandPeriod
728
+ from
729
+ to
730
+ ownershipAndManagement
731
+ freeholdOwner
732
+ hasHeadlease
733
+ yesNo
734
+ headLeaseholderControlled
735
+ buildingManager
736
+ buildingManagerType
737
+ details
738
+ isManagingAgentEmployed
739
+ sellerOwnership
740
+ yesNo
741
+ attachments
742
+ hasTenantCompanyDissolved
743
+ hasTenantCompanyDissolvedDetails
744
+ serviceCharge
745
+ sellerContributesToServiceCharge
746
+ annualServiceCharge
747
+ mostRecentServiceChargeDemandStatus
748
+ largeAdditionalExpense
749
+ yesNo
750
+ details
751
+ problemInServiceChargeLevel
752
+ yesNo
753
+ details
754
+ serviceChargeChallenged
755
+ yesNo
756
+ details
757
+ dangerousCladdingOrDefects
758
+ yesNo
759
+ details
760
+ difficultyInCollectingServiceCharge
761
+ yesNo
762
+ details
763
+ serviceChargeOwed
764
+ yesNo
765
+ details
766
+ propertiesContributingToMaintenanceOfManagedArea
767
+ adHocExpenses
768
+ serviceChargePaidUpToDate
769
+ yesNo
770
+ details
771
+ excessPaymentAnticipated
772
+ yesNo
773
+ detailsAnalysis
774
+ details
775
+ lastDemandPeriod
776
+ from
777
+ to
778
+ hasInabilityToCollectAffectedMaintenance
779
+ yesNo
780
+ details
781
+ reserveFund
782
+ yesNo
783
+ detailsAnalysis
784
+ details
785
+ contributionIncludedInServiceCharge
786
+ sufficentToCoverSection20Expenditure
787
+ yesNo
788
+ details
789
+ lastDecoratedPeriod
790
+ externally
791
+ year
792
+ from
793
+ to
794
+ internally
795
+ year
796
+ from
797
+ to
798
+ section20WorksProposed
799
+ yesNo
800
+ detailsAnalysis
801
+ details
802
+ increaseInServiceChargeAnticipated
803
+ yesNo
804
+ detailsAnalysis
805
+ details
806
+ outstandingServiceChargeConsultation
807
+ yesNo
808
+ details
809
+ japaneseKnotweedAffectingManagedAreas
810
+ yesNo
811
+ details
812
+ transferFees
813
+ yesNo
814
+ details
815
+ allPropertiesContribute
816
+ yesNo
817
+ details
818
+ leaseRestrictions
819
+ yesNo
820
+ details
821
+ buildingsInsurance
822
+ premiumsPaidUpToDate
823
+ yesNo
824
+ details
825
+ mostRecentBuildingsInsuranceDemandStatus
826
+ lastDemandPeriod
827
+ from
828
+ to
829
+ premiumPaidinFull
830
+ yesNo
831
+ details
832
+ claimsMade
833
+ yesNo
834
+ details
835
+ claimsAnticipated
836
+ yesNo
837
+ details
838
+ managedAreasCoveredByPolicy
839
+ yesNo
840
+ riskAssessments
841
+ assessmentsCarriedOut
842
+ urgentWorksRecommended
843
+ urgentWorksCarriedOut
844
+ outstandingEnforcementAction
845
+ dateRemedialActionRequired
846
+ standardTermsAvailable
847
+ yesNo
848
+ details
849
+ nonComplianceWithConditions
850
+ yesNo
851
+ details
852
+ buildingsReinstatementCostAssessment
853
+ premiumIncludedInServiceCharge
854
+ yesNo
855
+ details
856
+ disputes
857
+ sellerReceivedComplaint
858
+ yesNo
859
+ details
860
+ sellerSentComplaint
861
+ yesNo
862
+ details
863
+ ongoingForfeitureProceedings
864
+ yesNo
865
+ unresolvedDisputes
866
+ yesNo
867
+ detailsAnalysis
868
+ details
869
+ breachOfTermsOfLease
870
+ yesNo
871
+ detailsAnalysis
872
+ details
873
+ buildingSafetyAct
874
+ isLeaseQualifying
875
+ deedOfCertificateServed
876
+ yesNoNotApplicable
877
+ sellerCompletedDeedOfCertificate
878
+ attachments
879
+ landlordNotifiedOfSale
880
+ landlordsCertificateServed
881
+ yesNoNotApplicable
882
+ attachments
883
+ alterations
884
+ sellerAwareOfAlterations
885
+ yesNo
886
+ detailsAnalysis
887
+ details
888
+ landlordConsentObtained
889
+ yesNo
890
+ attachments
891
+ enfranchisement
892
+ sellerOwnedProperty
893
+ sellerServedNoticeOnLandlord
894
+ yesNo
895
+ attachments
896
+ sellerAwareOfNoticeOfCollectivePurchase
897
+ yesNo
898
+ attachments
899
+ sellerAwareOfResponse
900
+ yesNo
901
+ attachments
902
+ enfranchisementSteps
903
+ yesNo
904
+ details
905
+ general
906
+ otherPropertiesInManagedArea
907
+ leasedOnSimilarTerms
908
+ yesNo
909
+ details
910
+ buildingKnownToBeHMO
911
+ yesNo
912
+ details
913
+ additionalParkingRegulations
914
+ yesNo
915
+ details
916
+ restrictionOnKeepingPets
917
+ yesNo
918
+ details
919
+ requiredDocuments
920
+ lease
921
+ deedsOfVariation
922
+ copyOfcorrespondence
923
+ serviceChargeAccounts
924
+ serviceCharges
925
+ groundRent
926
+ buildingsInsurancePolicy
927
+ arrangedBySeller
928
+ arrangedByLandlord
929
+ noticeOfSale
930
+ yesNo
931
+ attachments
932
+ noticeOfBuildingCondition
933
+ yesNo
934
+ attachments
935
+ managedAreasBuildingsInsurancePolicy
936
+ serviceChargeEstimatesCurrent
937
+ serviceChargeEstimatesPrevious
938
+ proposedWorksNotices
939
+ forfeitureDocumentation
940
+ additionalRegulationsNotInLease
941
+ deedOfCovenant
942
+ certificateOfCompliance
943
+ certificateOfComplianceFee
944
+ licenceToAssign
945
+ permissionToAlter
946
+ noticesServedOnLessee
947
+ asbestosSurvey
948
+ managedAreaFireRiskAssessment
949
+ managementCompanyDocuments
950
+ memorandumAndArticles
951
+ shareOrMembershipCertificate
952
+ companyAccounts
953
+ managementCompanyAGMMinutes
954
+ enforcementNotices
955
+ additionalInformation
956
+ details
957
+ attachments
958
+ confirmationOfAccuracy
959
+ confirmation
960
+ capacity
961
+ otherOwnershipDetails
962
+ ]
963
+ parking
964
+ parkingArrangements[]
965
+ disabledParking
966
+ yesNo
967
+ controlledParking
968
+ yesNo
969
+ costOfPermit
970
+ costOfPermitFrequency
971
+ vehicleTypeRestriction
972
+ yesNo
973
+ details
974
+ droppedKerbAccess
975
+ yesNo
976
+ electricVehicleChargingPoint
977
+ yesNo
978
+ chargerDetails
979
+ chargerDetailsAttachments
980
+ cableCrossesPavement
981
+ yesNo
982
+ details
983
+ locatedInUlez
984
+ yesNo
985
+ listingAndConservation
986
+ isListed
987
+ yesNo
988
+ detailsAnalysis
989
+ details
990
+ attachments
991
+ isConservationArea
992
+ yesNo
993
+ details
994
+ attachments
995
+ hasTreePreservationOrder
996
+ yesNo
997
+ workCarriedOut
998
+ yesNo
999
+ detailsAnalysis
1000
+ details
1001
+ consentsObtained
1002
+ attachments
1003
+ typeOfConstruction
1004
+ isStandardForm
1005
+ yesNo
1006
+ detailsAnalysis
1007
+ constructionType
1008
+ details
1009
+ buildingSafety
1010
+ yesNo
1011
+ detailsAnalysis
1012
+ details
1013
+ workAlreadyDone
1014
+ workToBeDone
1015
+ potentialCost
1016
+ abilityToResideAtProperty
1017
+ attachments
1018
+ loft
1019
+ loftAccess
1020
+ detailsAnalysis
1021
+ details
1022
+ loftBoarded
1023
+ loftInsulated
1024
+ sprayFoamInsulation
1025
+ hasSprayFoamInstalled
1026
+ detailsAnalysis
1027
+ details
1028
+ attachments
1029
+ accessibilityAndAdaptations[]
1030
+ energyEfficiency
1031
+ certificateIsSupplied
1032
+ certificate
1033
+ certificateNumber
1034
+ address
1035
+ address1
1036
+ address2
1037
+ address3
1038
+ buildingReferenceNumber
1039
+ builtForm
1040
+ co2EmissCurrPerFloorArea
1041
+ co2EmissionsCurrent
1042
+ co2EmissionsPotential
1043
+ constituencyLabel
1044
+ constituency
1045
+ constructionAgeBand
1046
+ county
1047
+ currentEnergyEfficiency
1048
+ currentEnergyRating
1049
+ energyConsumptionCurrent
1050
+ energyConsumptionPotential
1051
+ energyTariff
1052
+ environmentImpactCurrent
1053
+ environmentImpactPotential
1054
+ extensionCount
1055
+ fixedLightingOutletsCount
1056
+ flatStoreyCount
1057
+ flatTopStorey
1058
+ floorDescription
1059
+ floorEnergyEff
1060
+ floorEnvEff
1061
+ floorHeight
1062
+ floorLevel
1063
+ glazedArea
1064
+ glazedType
1065
+ heatLossCorridor
1066
+ heatingCostCurrent
1067
+ heatingCostPotential
1068
+ hotWaterCostCurrent
1069
+ hotWaterCostPotential
1070
+ hotWaterEnergyEff
1071
+ hotWaterEnvEff
1072
+ hotwaterDescription
1073
+ inspectionDate
1074
+ lightingCostCurrent
1075
+ lightingCostPotential
1076
+ lightingDescription
1077
+ lightingEnergyEff
1078
+ lightingEnvEff
1079
+ lmkKey
1080
+ localAuthorityLabel
1081
+ localAuthority
1082
+ lodgementDate
1083
+ lodgementDatetime
1084
+ lowEnergyFixedLightCount
1085
+ lowEnergyLighting
1086
+ mainFuel
1087
+ mainHeatingControls
1088
+ mainheatDescription
1089
+ mainheatEnergyEff
1090
+ mainheatEnvEff
1091
+ mainheatcEnergyEff
1092
+ mainheatcEnvEff
1093
+ mainheatcontDescription
1094
+ mainsGasFlag
1095
+ mechanicalVentilation
1096
+ multiGlazeProportion
1097
+ numberHabitableRooms
1098
+ numberHeatedRooms
1099
+ numberOpenFireplaces
1100
+ photoSupply
1101
+ postcode
1102
+ posttown
1103
+ potentialEnergyEfficiency
1104
+ potentialEnergyRating
1105
+ propertyType
1106
+ roofDescription
1107
+ roofEnergyEff
1108
+ roofEnvEff
1109
+ secondheatDescription
1110
+ sheatingEnergyEff
1111
+ sheatingEnvEff
1112
+ solarWaterHeatingFlag
1113
+ tenure
1114
+ totalFloorArea
1115
+ transactionType
1116
+ unheatedCorridorLength
1117
+ uprnSource
1118
+ uprn
1119
+ wallsDescription
1120
+ wallsEnergyEff
1121
+ wallsEnvEff
1122
+ windTurbineCount
1123
+ windowsDescription
1124
+ windowsEnergyEff
1125
+ windowsEnvEff
1126
+ recommendations[
1127
+ lmkKey
1128
+ improvementItem
1129
+ indicativeCost
1130
+ improvementSummaryText
1131
+ improvementDescrText
1132
+ improvementId
1133
+ improvementIdText
1134
+ ]
1135
+ greenDealLoan
1136
+ hasGreenDealLoan
1137
+ yesNo
1138
+ details
1139
+ attachments
1140
+ councilTax
1141
+ councilTaxBand
1142
+ councilTaxAffectingAlterations
1143
+ yesNo
1144
+ details
1145
+ attachments
1146
+ councilTaxAnnualCharge
1147
+ disputesAndComplaints
1148
+ hasDisputesAndComplaints
1149
+ yesNo
1150
+ detailsAnalysis
1151
+ details
1152
+ leadingToDisputesAndComplaints
1153
+ yesNo
1154
+ detailsAnalysis
1155
+ details
1156
+ alterationsAndChanges
1157
+ hasStructuralAlterations
1158
+ yesNo
1159
+ detailsAnalysis
1160
+ details
1161
+ buildingRegApproval
1162
+ yesNo
1163
+ detailsAnalysis
1164
+ attachments
1165
+ details
1166
+ planningPermission
1167
+ yesNo
1168
+ detailsAnalysis
1169
+ attachments
1170
+ details
1171
+ listedBuildingConsent
1172
+ yesNo
1173
+ attachments
1174
+ details
1175
+ deedRestrictionConsent
1176
+ yesNo
1177
+ attachments
1178
+ details
1179
+ changeOfUse
1180
+ yesNo
1181
+ detailsAnalysis
1182
+ details
1183
+ yearCompleted
1184
+ buildingRegApproval
1185
+ yesNo
1186
+ detailsAnalysis
1187
+ attachments
1188
+ details
1189
+ planningPermission
1190
+ yesNo
1191
+ attachments
1192
+ details
1193
+ listedBuildingConsent
1194
+ yesNo
1195
+ attachments
1196
+ details
1197
+ deedRestrictionConsent
1198
+ yesNo
1199
+ attachments
1200
+ details
1201
+ nonResidentialPurposes
1202
+ yesNo
1203
+ details
1204
+ attachments
1205
+ windowReplacementsSince2002
1206
+ yesNo
1207
+ detailsAnalysis
1208
+ details
1209
+ yearCompleted
1210
+ buildingRegApproval
1211
+ yesNo
1212
+ detailsAnalysis
1213
+ attachments
1214
+ details
1215
+ planningPermission
1216
+ yesNo
1217
+ attachments
1218
+ details
1219
+ listedBuildingConsent
1220
+ yesNo
1221
+ attachments
1222
+ details
1223
+ deedRestrictionConsent
1224
+ yesNo
1225
+ attachments
1226
+ details
1227
+ workCompleted
1228
+ yesNo
1229
+ details
1230
+ documents
1231
+ extension
1232
+ yesNo
1233
+ details
1234
+ workCompleted
1235
+ yesNo
1236
+ details
1237
+ documents
1238
+ planningPermission
1239
+ yesNo
1240
+ attachments
1241
+ details
1242
+ buildingRegApproval
1243
+ yesNo
1244
+ attachments
1245
+ details
1246
+ hasAddedConservatory
1247
+ yesNo
1248
+ detailsAnalysis
1249
+ details
1250
+ yearCompleted
1251
+ buildingRegApproval
1252
+ yesNo
1253
+ detailsAnalysis
1254
+ attachments
1255
+ details
1256
+ planningPermission
1257
+ yesNo
1258
+ attachments
1259
+ details
1260
+ listedBuildingConsent
1261
+ yesNo
1262
+ attachments
1263
+ details
1264
+ deedRestrictionConsent
1265
+ yesNo
1266
+ attachments
1267
+ details
1268
+ workCompleted
1269
+ yesNo
1270
+ details
1271
+ documents
1272
+ loftConversion
1273
+ yesNo
1274
+ details
1275
+ workCompleted
1276
+ yesNo
1277
+ details
1278
+ documents
1279
+ planningPermission
1280
+ yesNo
1281
+ attachments
1282
+ details
1283
+ buildingRegApproval
1284
+ yesNo
1285
+ attachments
1286
+ details
1287
+ garageConversion
1288
+ yesNo
1289
+ details
1290
+ workCompleted
1291
+ yesNo
1292
+ details
1293
+ documents
1294
+ planningPermission
1295
+ yesNo
1296
+ attachments
1297
+ details
1298
+ buildingRegApproval
1299
+ yesNo
1300
+ attachments
1301
+ details
1302
+ removalOfInternalWalls
1303
+ yesNo
1304
+ details
1305
+ workCompleted
1306
+ yesNo
1307
+ details
1308
+ documents
1309
+ planningPermission
1310
+ yesNo
1311
+ attachments
1312
+ details
1313
+ buildingRegApproval
1314
+ yesNo
1315
+ attachments
1316
+ details
1317
+ removalOfChimneyBreast
1318
+ yesNo
1319
+ details
1320
+ workCompleted
1321
+ yesNo
1322
+ details
1323
+ documents
1324
+ planningPermission
1325
+ yesNo
1326
+ attachments
1327
+ details
1328
+ buildingRegApproval
1329
+ yesNo
1330
+ attachments
1331
+ details
1332
+ insulation
1333
+ yesNo
1334
+ details
1335
+ workCompleted
1336
+ yesNo
1337
+ details
1338
+ documents
1339
+ planningPermission
1340
+ yesNo
1341
+ attachments
1342
+ details
1343
+ buildingRegApproval
1344
+ yesNo
1345
+ attachments
1346
+ details
1347
+ otherBuildingWorksOrChangesToTheProperty
1348
+ yesNo
1349
+ details
1350
+ workCompleted
1351
+ yesNo
1352
+ details
1353
+ documents
1354
+ planningPermission
1355
+ yesNo
1356
+ attachments
1357
+ details
1358
+ buildingRegApproval
1359
+ yesNo
1360
+ attachments
1361
+ details
1362
+ worksUnfinished
1363
+ yesNo
1364
+ detailsAnalysis
1365
+ details
1366
+ attachments
1367
+ planningPermissionBreaches
1368
+ yesNo
1369
+ detailsAnalysis
1370
+ details
1371
+ willingToInsure
1372
+ attachments
1373
+ unresolvedPlanningIssues
1374
+ yesNo
1375
+ detailsAnalysis
1376
+ details
1377
+ willingToInsure
1378
+ attachments
1379
+ notices
1380
+ neighbourDevelopment
1381
+ yesNo
1382
+ details
1383
+ attachments
1384
+ planningApplication
1385
+ yesNo
1386
+ details
1387
+ attachments
1388
+ requiredMaintenance
1389
+ yesNo
1390
+ details
1391
+ attachments
1392
+ listedBuildingApplication
1393
+ yesNo
1394
+ details
1395
+ attachments
1396
+ infrastructureProject
1397
+ yesNo
1398
+ details
1399
+ attachments
1400
+ partyWallAct
1401
+ yesNo
1402
+ detailsAnalysis
1403
+ details
1404
+ attachments
1405
+ otherNotices
1406
+ yesNo
1407
+ details
1408
+ attachments
1409
+ specialistIssues
1410
+ dryRotEtcTreatment
1411
+ yesNo
1412
+ details
1413
+ attachments
1414
+ containsAsbestos
1415
+ yesNo
1416
+ details
1417
+ attachments
1418
+ japaneseKnotweed
1419
+ knotweedSurveyCarriedOut
1420
+ yesNo
1421
+ attachments
1422
+ yesNo
1423
+ managementPlanInPlace
1424
+ attachments
1425
+ subsidenceOrStructuralFault
1426
+ yesNo
1427
+ detailsAnalysis
1428
+ details
1429
+ attachments
1430
+ ongoingHealthOrSafetyIssue
1431
+ yesNo
1432
+ details
1433
+ attachments
1434
+ wellsDitchesShaft
1435
+ yesNo
1436
+ details
1437
+ damagedOrExposedElectrics
1438
+ yesNo
1439
+ details
1440
+ damageToFlooringOrStaircases
1441
+ yesNo
1442
+ details
1443
+ knownAreasInPoorCondition
1444
+ yesNo
1445
+ details
1446
+ fixturesAndFittings
1447
+ itemsToRemove
1448
+ yesNo
1449
+ details
1450
+ itemsToInclude
1451
+ yesNo
1452
+ details
1453
+ basicFittings
1454
+ boilerImmersionHeater
1455
+ isIncludedExcludedOrNone
1456
+ comments
1457
+ price
1458
+ radiatorsWallHeaters
1459
+ isIncludedExcludedOrNone
1460
+ comments
1461
+ price
1462
+ nightStorageHeaters
1463
+ isIncludedExcludedOrNone
1464
+ comments
1465
+ price
1466
+ freeStandingHeaters
1467
+ isIncludedExcludedOrNone
1468
+ comments
1469
+ price
1470
+ gasFiresWithSurround
1471
+ isIncludedExcludedOrNone
1472
+ comments
1473
+ price
1474
+ electricFiresWithSurround
1475
+ isIncludedExcludedOrNone
1476
+ comments
1477
+ price
1478
+ lightSwitches
1479
+ isIncludedExcludedOrNone
1480
+ comments
1481
+ price
1482
+ roofInsulation
1483
+ isIncludedExcludedOrNone
1484
+ comments
1485
+ price
1486
+ windowFittings
1487
+ isIncludedExcludedOrNone
1488
+ comments
1489
+ price
1490
+ windowShuttersGrilles
1491
+ isIncludedExcludedOrNone
1492
+ comments
1493
+ price
1494
+ internalDoorFittings
1495
+ isIncludedExcludedOrNone
1496
+ comments
1497
+ price
1498
+ externalDoorFittings
1499
+ isIncludedExcludedOrNone
1500
+ comments
1501
+ price
1502
+ doorbellChime
1503
+ isIncludedExcludedOrNone
1504
+ comments
1505
+ price
1506
+ electricSockets
1507
+ isIncludedExcludedOrNone
1508
+ comments
1509
+ price
1510
+ burglarAlarm
1511
+ isIncludedExcludedOrNone
1512
+ comments
1513
+ price
1514
+ otherItems[
1515
+ itemName
1516
+ isIncludedOrExcluded
1517
+ comments
1518
+ price
1519
+ ]
1520
+ kitchen
1521
+ hob
1522
+ isIncludedExcludedOrNone
1523
+ comments
1524
+ fittedOrFreestanding
1525
+ fittedOrFreestanding
1526
+ price
1527
+ extractorHood
1528
+ isIncludedExcludedOrNone
1529
+ comments
1530
+ fittedOrFreestanding
1531
+ fittedOrFreestanding
1532
+ price
1533
+ ovenGrill
1534
+ isIncludedExcludedOrNone
1535
+ comments
1536
+ fittedOrFreestanding
1537
+ fittedOrFreestanding
1538
+ price
1539
+ cooker
1540
+ isIncludedExcludedOrNone
1541
+ comments
1542
+ fittedOrFreestanding
1543
+ fittedOrFreestanding
1544
+ price
1545
+ microwave
1546
+ isIncludedExcludedOrNone
1547
+ comments
1548
+ fittedOrFreestanding
1549
+ fittedOrFreestanding
1550
+ price
1551
+ refrigeratorFridgeFreezer
1552
+ isIncludedExcludedOrNone
1553
+ comments
1554
+ fittedOrFreestanding
1555
+ fittedOrFreestanding
1556
+ price
1557
+ freezer
1558
+ isIncludedExcludedOrNone
1559
+ comments
1560
+ fittedOrFreestanding
1561
+ fittedOrFreestanding
1562
+ price
1563
+ dishwasher
1564
+ isIncludedExcludedOrNone
1565
+ comments
1566
+ fittedOrFreestanding
1567
+ fittedOrFreestanding
1568
+ price
1569
+ tumbleDryer
1570
+ isIncludedExcludedOrNone
1571
+ comments
1572
+ fittedOrFreestanding
1573
+ fittedOrFreestanding
1574
+ price
1575
+ washingMachine
1576
+ isIncludedExcludedOrNone
1577
+ comments
1578
+ fittedOrFreestanding
1579
+ fittedOrFreestanding
1580
+ price
1581
+ otherItems[
1582
+ itemName
1583
+ isIncludedOrExcluded
1584
+ comments
1585
+ fittedOrFreestanding
1586
+ fittedOrFreestanding
1587
+ price
1588
+ ]
1589
+ bathroom
1590
+ bath
1591
+ isIncludedExcludedOrNone
1592
+ comments
1593
+ price
1594
+ showerFittingForBath
1595
+ isIncludedExcludedOrNone
1596
+ comments
1597
+ price
1598
+ showerCurtain
1599
+ isIncludedExcludedOrNone
1600
+ comments
1601
+ price
1602
+ bathroomCabinet
1603
+ isIncludedExcludedOrNone
1604
+ comments
1605
+ price
1606
+ taps
1607
+ isIncludedExcludedOrNone
1608
+ comments
1609
+ price
1610
+ separateShowersAndFittings
1611
+ isIncludedExcludedOrNone
1612
+ comments
1613
+ price
1614
+ towelRail
1615
+ isIncludedExcludedOrNone
1616
+ comments
1617
+ price
1618
+ soapToothbrushHolders
1619
+ isIncludedExcludedOrNone
1620
+ comments
1621
+ price
1622
+ toiletRollHolders
1623
+ isIncludedExcludedOrNone
1624
+ comments
1625
+ price
1626
+ bathroomMirror
1627
+ isIncludedExcludedOrNone
1628
+ comments
1629
+ price
1630
+ carpets
1631
+ hallStairsLanding
1632
+ isIncludedExcludedOrNone
1633
+ comments
1634
+ price
1635
+ livingRoom
1636
+ isIncludedExcludedOrNone
1637
+ comments
1638
+ price
1639
+ diningRoom
1640
+ isIncludedExcludedOrNone
1641
+ comments
1642
+ price
1643
+ kitchen
1644
+ isIncludedExcludedOrNone
1645
+ comments
1646
+ price
1647
+ bedroom1
1648
+ isIncludedExcludedOrNone
1649
+ comments
1650
+ price
1651
+ bedroom2
1652
+ isIncludedExcludedOrNone
1653
+ comments
1654
+ price
1655
+ bedroom3
1656
+ isIncludedExcludedOrNone
1657
+ comments
1658
+ price
1659
+ otherRooms[
1660
+ itemName
1661
+ isIncludedOrExcluded
1662
+ comments
1663
+ price
1664
+ ]
1665
+ curtainsAndCurtainRails
1666
+ curtainRailsPolesPelmets
1667
+ hallStairsLanding
1668
+ isIncludedExcludedOrNone
1669
+ comments
1670
+ price
1671
+ livingRoom
1672
+ isIncludedExcludedOrNone
1673
+ comments
1674
+ price
1675
+ diningRoom
1676
+ isIncludedExcludedOrNone
1677
+ comments
1678
+ price
1679
+ kitchen
1680
+ isIncludedExcludedOrNone
1681
+ comments
1682
+ price
1683
+ bedroom1
1684
+ isIncludedExcludedOrNone
1685
+ comments
1686
+ price
1687
+ bedroom2
1688
+ isIncludedExcludedOrNone
1689
+ comments
1690
+ price
1691
+ bedroom3
1692
+ isIncludedExcludedOrNone
1693
+ comments
1694
+ price
1695
+ otherRooms[
1696
+ itemName
1697
+ isIncludedOrExcluded
1698
+ comments
1699
+ price
1700
+ ]
1701
+ curtainsBlinds
1702
+ hallStairsLanding
1703
+ isIncludedExcludedOrNone
1704
+ comments
1705
+ price
1706
+ livingRoom
1707
+ isIncludedExcludedOrNone
1708
+ comments
1709
+ price
1710
+ diningRoom
1711
+ isIncludedExcludedOrNone
1712
+ comments
1713
+ price
1714
+ kitchen
1715
+ isIncludedExcludedOrNone
1716
+ comments
1717
+ price
1718
+ bedroom1
1719
+ isIncludedExcludedOrNone
1720
+ comments
1721
+ price
1722
+ bedroom2
1723
+ isIncludedExcludedOrNone
1724
+ comments
1725
+ price
1726
+ bedroom3
1727
+ isIncludedExcludedOrNone
1728
+ comments
1729
+ price
1730
+ otherRooms[
1731
+ itemName
1732
+ isIncludedOrExcluded
1733
+ comments
1734
+ price
1735
+ ]
1736
+ lightFittings
1737
+ hallStairsLanding
1738
+ isIncludedExcludedOrNone
1739
+ comments
1740
+ price
1741
+ livingRoom
1742
+ isIncludedExcludedOrNone
1743
+ comments
1744
+ price
1745
+ diningRoom
1746
+ isIncludedExcludedOrNone
1747
+ comments
1748
+ price
1749
+ kitchen
1750
+ isIncludedExcludedOrNone
1751
+ comments
1752
+ price
1753
+ bedroom1
1754
+ isIncludedExcludedOrNone
1755
+ comments
1756
+ price
1757
+ bedroom2
1758
+ isIncludedExcludedOrNone
1759
+ comments
1760
+ price
1761
+ bedroom3
1762
+ isIncludedExcludedOrNone
1763
+ comments
1764
+ price
1765
+ otherRooms[
1766
+ itemName
1767
+ isIncludedOrExcluded
1768
+ comments
1769
+ price
1770
+ ]
1771
+ fittedUnits
1772
+ hallStairsLanding
1773
+ isIncludedExcludedOrNone
1774
+ comments
1775
+ price
1776
+ livingRoom
1777
+ isIncludedExcludedOrNone
1778
+ comments
1779
+ price
1780
+ diningRoom
1781
+ isIncludedExcludedOrNone
1782
+ comments
1783
+ price
1784
+ kitchen
1785
+ isIncludedExcludedOrNone
1786
+ comments
1787
+ price
1788
+ bedroom1
1789
+ isIncludedExcludedOrNone
1790
+ comments
1791
+ price
1792
+ bedroom2
1793
+ isIncludedExcludedOrNone
1794
+ comments
1795
+ price
1796
+ bedroom3
1797
+ isIncludedExcludedOrNone
1798
+ comments
1799
+ price
1800
+ otherRooms[
1801
+ itemName
1802
+ isIncludedOrExcluded
1803
+ comments
1804
+ price
1805
+ ]
1806
+ outdoorArea
1807
+ gardenFurniture
1808
+ isIncludedExcludedOrNone
1809
+ comments
1810
+ price
1811
+ gardenOrnaments
1812
+ isIncludedExcludedOrNone
1813
+ comments
1814
+ price
1815
+ treesPlantsShrubs
1816
+ isIncludedExcludedOrNone
1817
+ comments
1818
+ price
1819
+ barbecue
1820
+ isIncludedExcludedOrNone
1821
+ comments
1822
+ price
1823
+ dustbins
1824
+ isIncludedExcludedOrNone
1825
+ comments
1826
+ price
1827
+ gardenShed
1828
+ isIncludedExcludedOrNone
1829
+ comments
1830
+ price
1831
+ greenhouse
1832
+ isIncludedExcludedOrNone
1833
+ comments
1834
+ price
1835
+ outdoorHeater
1836
+ isIncludedExcludedOrNone
1837
+ comments
1838
+ price
1839
+ outdoorLights
1840
+ isIncludedExcludedOrNone
1841
+ comments
1842
+ price
1843
+ waterButt
1844
+ isIncludedExcludedOrNone
1845
+ comments
1846
+ price
1847
+ clothesLine
1848
+ isIncludedExcludedOrNone
1849
+ comments
1850
+ price
1851
+ rotaryLine
1852
+ isIncludedExcludedOrNone
1853
+ comments
1854
+ price
1855
+ otherItems[
1856
+ itemName
1857
+ isIncludedOrExcluded
1858
+ comments
1859
+ price
1860
+ ]
1861
+ televisionAndTelephone
1862
+ telephoneReceivers
1863
+ isIncludedExcludedOrNone
1864
+ comments
1865
+ price
1866
+ televisionAerial
1867
+ isIncludedExcludedOrNone
1868
+ comments
1869
+ price
1870
+ radioAerial
1871
+ isIncludedExcludedOrNone
1872
+ comments
1873
+ price
1874
+ satelliteDish
1875
+ isIncludedExcludedOrNone
1876
+ comments
1877
+ price
1878
+ stockOfFuel
1879
+ oil
1880
+ isIncludedExcludedOrNone
1881
+ comments
1882
+ price
1883
+ wood
1884
+ isIncludedExcludedOrNone
1885
+ comments
1886
+ price
1887
+ lpg
1888
+ isIncludedExcludedOrNone
1889
+ comments
1890
+ price
1891
+ otherItems
1892
+ otherItems[
1893
+ itemName
1894
+ isIncludedOrExcluded
1895
+ comments
1896
+ price
1897
+ ]
1898
+ confirmationOfAccuracy
1899
+ confirmInformationIsAccurate
1900
+ electricity
1901
+ mainsElectricity
1902
+ yesNo
1903
+ supplier
1904
+ electricityMeter
1905
+ location
1906
+ attachments
1907
+ mpan
1908
+ dateToBeConnected
1909
+ solarPanels
1910
+ yesNo
1911
+ supplier
1912
+ hotWaterOnly
1913
+ yearInstalled
1914
+ panelsOwnedOutright
1915
+ yesNo
1916
+ detailsAnalysis
1917
+ details
1918
+ attachments
1919
+ associatedCost
1920
+ frequency
1921
+ amount
1922
+ panelProviderLease
1923
+ yesNo
1924
+ detailsAnalysis
1925
+ details
1926
+ attachments
1927
+ lastMaintained
1928
+ inGoodWorkingOrder
1929
+ yesNo
1930
+ details
1931
+ photovoltaicMeterPanelLocation
1932
+ attachments
1933
+ maintenanceAgreement
1934
+ yesNo
1935
+ attachments
1936
+ photovoltaicBatteries
1937
+ yesNo
1938
+ attachments
1939
+ details
1940
+ nationalGrid
1941
+ yesNo
1942
+ fitOrSegInPlace
1943
+ yesNo
1944
+ fitSegAgreementCopy
1945
+ attachments
1946
+ fitSegAssignmentProcedure
1947
+ installationCertificates
1948
+ dateToBeConnected
1949
+ heatPump
1950
+ yesNo
1951
+ details
1952
+ supplier
1953
+ dateInstalled
1954
+ attachments
1955
+ makeModel
1956
+ serviceProviderName
1957
+ dateToBeConnected
1958
+ otherSources
1959
+ yesNo
1960
+ details
1961
+ supplier
1962
+ dateToBeConnected
1963
+ waterAndDrainage
1964
+ maps
1965
+ publicSewerMapAttached
1966
+ waterworksMapAttached
1967
+ water
1968
+ mainsWater
1969
+ yesNo
1970
+ details
1971
+ associatedCost
1972
+ frequency
1973
+ amount
1974
+ supplier
1975
+ stopcock
1976
+ location
1977
+ attachments
1978
+ waterMeter
1979
+ isSupplyMetered
1980
+ location
1981
+ attachments
1982
+ dateToBeConnected
1983
+ waterMainsWithinBoundaries
1984
+ yesNo
1985
+ details
1986
+ waterMainsSubjectOfAdoptionAgreement
1987
+ yesNo
1988
+ details
1989
+ lowWaterPressureRisk
1990
+ yesNo
1991
+ details
1992
+ supplyClassification
1993
+ drainage
1994
+ mainsSurfaceWaterDrainage
1995
+ yesNo
1996
+ details
1997
+ dateToBeConnected
1998
+ mainsFoulDrainage
1999
+ yesNo
2000
+ details
2001
+ supplier
2002
+ dateToBeConnected
2003
+ offMainsDrainageSystem
2004
+ offMainsDrainageSystemType
2005
+ otherConnectedProperties
2006
+ yesNo
2007
+ numberOfPropertiesSharing
2008
+ details
2009
+ plantOnOtherLand
2010
+ yesNo
2011
+ attachments
2012
+ plantRegistered
2013
+ yesNo
2014
+ attachments
2015
+ plantDrainsIntoWaterway
2016
+ yesNo
2017
+ hasInfiltrationSystem
2018
+ yesNo
2019
+ dischargeCompliesWithGBR
2020
+ dateDischargeCommenced
2021
+ dateInstalled
2022
+ dateReplaced
2023
+ dateLastEmptied
2024
+ supplier
2025
+ makeModel
2026
+ serviceProviderName
2027
+ dateLastServiced
2028
+ attachments
2029
+ details
2030
+ associatedCost
2031
+ frequency
2032
+ amount
2033
+ surfaceDrainageCharge
2034
+ yesNo
2035
+ details
2036
+ publicDrainWithinBoundaries
2037
+ yesNo
2038
+ details
2039
+ publicPumpingStationWithinBoundaries
2040
+ yesNo
2041
+ details
2042
+ publicSewerWithin100ft
2043
+ yesNo
2044
+ details
2045
+ publicPumpingStationWithin50mOfBuildings
2046
+ yesNo
2047
+ details
2048
+ sewersSubjectOfAdoptionAgreement
2049
+ yesNo
2050
+ details
2051
+ sewerageUndertakerApproval
2052
+ yesNo
2053
+ details
2054
+ riskOfInternalFlooding
2055
+ yesNo
2056
+ details
2057
+ distanceToNearestSewerageTreatment
2058
+ maintenanceAgreements
2059
+ yesNo
2060
+ details
2061
+ attachments
2062
+ charging
2063
+ sewerageProvider
2064
+ waterProvider
2065
+ sewerageBills
2066
+ waterBills
2067
+ currentChargingBasis
2068
+ consequentialChargingBasis
2069
+ heating
2070
+ heatingSystem
2071
+ heatingType
2072
+ detailsAnalysis
2073
+ centralHeatingDetails
2074
+ centralHeatingFuel
2075
+ centralHeatingFuelType
2076
+ supplier
2077
+ gasMeter
2078
+ location
2079
+ attachments
2080
+ mprn
2081
+ otherCentralHeatingFuelType
2082
+ centralHeatingInstalled
2083
+ boilerInstallationCertificate
2084
+ yesNo
2085
+ boilerInstallationDate
2086
+ attachments
2087
+ replacementOtherThanBoiler
2088
+ yesNo
2089
+ attachments
2090
+ heatingLastServicedDate
2091
+ heatingLastServicedReport
2092
+ heatingInGoodWorkingOrder
2093
+ yesNo
2094
+ details
2095
+ details
2096
+ otherHeatingFeatures[]
2097
+ multipleHeatingSystems
2098
+ connectivity
2099
+ telephone
2100
+ yesNo
2101
+ supplier
2102
+ dateToBeConnected
2103
+ cableSatelliteTV
2104
+ yesNo
2105
+ supplier
2106
+ dateToBeConnected
2107
+ broadband
2108
+ typeOfConnection
2109
+ predictedSpeed
2110
+ maxBbPredictedDown
2111
+ maxBbPredictedUp
2112
+ maxSfbbPredictedDown
2113
+ maxSfbbPredictedUp
2114
+ maxUfbbPredictedDown
2115
+ maxUfbbPredictedUp
2116
+ maxPredictedDown
2117
+ maxPredictedUp
2118
+ providerName
2119
+ mobilePhone
2120
+ knownSignalIssues
2121
+ yesNo
2122
+ details
2123
+ predictedCoverage
2124
+ eeVoiceOutdoor
2125
+ eeVoiceOutdoorNo4g
2126
+ eeVoiceIndoor
2127
+ eeVoiceIndoorNo4g
2128
+ eeDataOutdoor
2129
+ eeDataOutdoorNo4g
2130
+ eeDataIndoor
2131
+ eeDataIndoorNo4g
2132
+ h3VoiceOutdoor
2133
+ h3VoiceOutdoorNo4g
2134
+ h3VoiceIndoor
2135
+ h3VoiceIndoorNo4g
2136
+ h3DataOutdoor
2137
+ h3DataOutdoorNo4g
2138
+ h3DataIndoor
2139
+ h3DataIndoorNo4g
2140
+ tfVoiceOutdoor
2141
+ tfVoiceOutdoorNo4g
2142
+ tfVoiceIndoor
2143
+ tfVoiceIndoorNo4g
2144
+ tfDataOutdoor
2145
+ tfDataOutdoorNo4g
2146
+ tfDataIndoor
2147
+ tfDataIndoorNo4g
2148
+ voVoiceOutdoor
2149
+ voVoiceOutdoorNo4g
2150
+ voVoiceIndoor
2151
+ voVoiceIndoorNo4g
2152
+ voDataOutdoor
2153
+ voDataOutdoorNo4g
2154
+ voDataIndoor
2155
+ voDataIndoorNo4g
2156
+ otherServices
2157
+ insurance
2158
+ difficultiesObtainingInsurance
2159
+ abnormalRiseInPremiums
2160
+ yesNo
2161
+ detailsAnalysis
2162
+ details
2163
+ subjectToHighExcesses
2164
+ yesNo
2165
+ detailsAnalysis
2166
+ details
2167
+ subjectToUnusualConditions
2168
+ yesNo
2169
+ detailsAnalysis
2170
+ details
2171
+ refused
2172
+ yesNo
2173
+ detailsAnalysis
2174
+ details
2175
+ isInsured
2176
+ details
2177
+ landlordInsuresIfFlat
2178
+ whoInsures
2179
+ insuranceClaims
2180
+ yesNo
2181
+ detailsAnalysis
2182
+ details
2183
+ rightsAndInformalArrangements
2184
+ sharedContributions
2185
+ yesNo
2186
+ details
2187
+ disagreementOrComplaint
2188
+ yesNo
2189
+ details
2190
+ neighbouringLandRights
2191
+ yesNo
2192
+ details
2193
+ disagreementOrComplaint
2194
+ yesNo
2195
+ details
2196
+ attachments
2197
+ accessRestrictionAttempts
2198
+ yesNo
2199
+ details
2200
+ rightsOrArrangements
2201
+ publicRightOfWay
2202
+ yesNo
2203
+ details
2204
+ attachments
2205
+ privateRightOfWay
2206
+ yesNo
2207
+ details
2208
+ rightsOfLight
2209
+ yesNo
2210
+ details
2211
+ rightsOfSupport
2212
+ yesNo
2213
+ details
2214
+ rightsCreatedThroughCustom
2215
+ yesNo
2216
+ details
2217
+ rightsToTakeFromLand
2218
+ yesNo
2219
+ details
2220
+ minesAndMinerals
2221
+ yesNo
2222
+ details
2223
+ churchChancel
2224
+ yesNo
2225
+ details
2226
+ otherRights
2227
+ yesNo
2228
+ details
2229
+ disagreementOrComplaint
2230
+ yesNo
2231
+ details
2232
+ askedOthersToContribute
2233
+ yesNo
2234
+ details
2235
+ disagreementOrComplaint
2236
+ yesNo
2237
+ details
2238
+ environmentalIssues
2239
+ flooding
2240
+ floodRiskReport
2241
+ hasReportBeenPrepared
2242
+ attachments
2243
+ floodRisk
2244
+ riskIndicator
2245
+ actionAlertRating
2246
+ result
2247
+ summary
2248
+ recommendations
2249
+ datasetAttribution
2250
+ riskSubcategories[
2251
+ subCategory
2252
+ riskIndicator
2253
+ actionAlertRating
2254
+ result
2255
+ summary
2256
+ recommendations
2257
+ datasetAttribution
2258
+ ]
2259
+ historicalFlooding
2260
+ hasBeenFlooded
2261
+ typeOfFlooding[]
2262
+ details
2263
+ floodDefences
2264
+ hasFloodDefences
2265
+ details
2266
+ stormFireFloodDamage
2267
+ yesNo
2268
+ details
2269
+ radon
2270
+ radonRisk
2271
+ riskIndicator
2272
+ actionAlertRating
2273
+ result
2274
+ summary
2275
+ recommendations
2276
+ datasetAttribution
2277
+ riskSubcategories[
2278
+ subCategory
2279
+ riskIndicator
2280
+ actionAlertRating
2281
+ result
2282
+ summary
2283
+ recommendations
2284
+ datasetAttribution
2285
+ ]
2286
+ radonTest
2287
+ yesNo
2288
+ details
2289
+ attachments
2290
+ remedialMeasuresOnConstruction
2291
+ yesNo
2292
+ contaminatedLand
2293
+ contaminatedLandRisk
2294
+ riskIndicator
2295
+ actionAlertRating
2296
+ result
2297
+ summary
2298
+ recommendations
2299
+ datasetAttribution
2300
+ riskSubcategories[
2301
+ subCategory
2302
+ riskIndicator
2303
+ actionAlertRating
2304
+ result
2305
+ summary
2306
+ recommendations
2307
+ datasetAttribution
2308
+ ]
2309
+ groundStability
2310
+ groundStabilityRisk
2311
+ riskIndicator
2312
+ actionAlertRating
2313
+ result
2314
+ summary
2315
+ recommendations
2316
+ datasetAttribution
2317
+ riskSubcategories[
2318
+ subCategory
2319
+ riskIndicator
2320
+ actionAlertRating
2321
+ result
2322
+ summary
2323
+ recommendations
2324
+ datasetAttribution
2325
+ ]
2326
+ infrastructure
2327
+ infrastructureRisk
2328
+ riskIndicator
2329
+ actionAlertRating
2330
+ result
2331
+ summary
2332
+ recommendations
2333
+ datasetAttribution
2334
+ riskSubcategories[
2335
+ subCategory
2336
+ riskIndicator
2337
+ actionAlertRating
2338
+ result
2339
+ summary
2340
+ recommendations
2341
+ datasetAttribution
2342
+ ]
2343
+ energy
2344
+ energyRisk
2345
+ riskIndicator
2346
+ actionAlertRating
2347
+ result
2348
+ summary
2349
+ recommendations
2350
+ datasetAttribution
2351
+ riskSubcategories[
2352
+ subCategory
2353
+ riskIndicator
2354
+ actionAlertRating
2355
+ result
2356
+ summary
2357
+ recommendations
2358
+ datasetAttribution
2359
+ ]
2360
+ transportation
2361
+ transportationRisk
2362
+ riskIndicator
2363
+ actionAlertRating
2364
+ result
2365
+ summary
2366
+ recommendations
2367
+ datasetAttribution
2368
+ riskSubcategories[
2369
+ subCategory
2370
+ riskIndicator
2371
+ actionAlertRating
2372
+ result
2373
+ summary
2374
+ recommendations
2375
+ datasetAttribution
2376
+ ]
2377
+ planning
2378
+ planningRisk
2379
+ riskIndicator
2380
+ actionAlertRating
2381
+ result
2382
+ summary
2383
+ recommendations
2384
+ datasetAttribution
2385
+ riskSubcategories[
2386
+ subCategory
2387
+ riskIndicator
2388
+ actionAlertRating
2389
+ result
2390
+ summary
2391
+ recommendations
2392
+ datasetAttribution
2393
+ ]
2394
+ climate
2395
+ climateRisk
2396
+ riskIndicator
2397
+ actionAlertRating
2398
+ result
2399
+ summary
2400
+ recommendations
2401
+ datasetAttribution
2402
+ riskSubcategories[
2403
+ subCategory
2404
+ riskIndicator
2405
+ actionAlertRating
2406
+ result
2407
+ summary
2408
+ recommendations
2409
+ datasetAttribution
2410
+ ]
2411
+ coalMining
2412
+ riskIndicator
2413
+ actionAlertRating
2414
+ result
2415
+ summary
2416
+ recommendations
2417
+ datasetAttribution
2418
+ riskSubcategories[
2419
+ subCategory
2420
+ riskIndicator
2421
+ actionAlertRating
2422
+ result
2423
+ summary
2424
+ recommendations
2425
+ datasetAttribution
2426
+ ]
2427
+ nonCoalMining
2428
+ riskIndicator
2429
+ actionAlertRating
2430
+ result
2431
+ summary
2432
+ recommendations
2433
+ datasetAttribution
2434
+ riskSubcategories[
2435
+ subCategory
2436
+ riskIndicator
2437
+ actionAlertRating
2438
+ result
2439
+ summary
2440
+ recommendations
2441
+ datasetAttribution
2442
+ ]
2443
+ coastalErosion
2444
+ riskIndicator
2445
+ actionAlertRating
2446
+ result
2447
+ summary
2448
+ recommendations
2449
+ datasetAttribution
2450
+ riskSubcategories[
2451
+ subCategory
2452
+ riskIndicator
2453
+ actionAlertRating
2454
+ result
2455
+ summary
2456
+ recommendations
2457
+ datasetAttribution
2458
+ ]
2459
+ otherEnvironmental
2460
+ riskIndicator
2461
+ summary
2462
+ otherIssues
2463
+ excessiveNoise
2464
+ yesNo
2465
+ details
2466
+ attachments
2467
+ crime
2468
+ yesNo
2469
+ details
2470
+ attachments
2471
+ cautionOrConviction
2472
+ yesNo
2473
+ details
2474
+ attachments
2475
+ failedTransactionsInLast12Months
2476
+ yesNo
2477
+ details
2478
+ attachments
2479
+ additionalInformation
2480
+ consents
2481
+ attachments
2482
+ consentsAttached
2483
+ consentsToFollow
2484
+ consentsNotAvailable
2485
+ furtherInformation
2486
+ details
2487
+ attachments
2488
+ restrictionsOnUseNotCompliedWith
2489
+ yesNo
2490
+ details
2491
+ attachments
2492
+ otherMaterialIssue
2493
+ yesNo
2494
+ details
2495
+ attachments
2496
+ otherCharges
2497
+ yesNo
2498
+ details
2499
+ buyToLet
2500
+ yesNo
2501
+ consumerProtectionRegulationsDeclaration
2502
+ consumerProtectionRegulationsResponse
2503
+ legalOwners
2504
+ namesOfLegalOwners[
2505
+ ownerType
2506
+ firstName
2507
+ middleNames
2508
+ lastName
2509
+ organisationName
2510
+ ]
2511
+ legalBoundaries
2512
+ partOutsideLegalOwnership
2513
+ yesNo
2514
+ detailsAnalysis
2515
+ details
2516
+ partOnSeparateSiteOrDeed
2517
+ yesNo
2518
+ detailsAnalysis
2519
+ details
2520
+ boundariesDifferFromTitlePlan
2521
+ yesNo
2522
+ detailsAnalysis
2523
+ details
2524
+ attachments
2525
+ boundaryAlterationProposal
2526
+ yesNo
2527
+ detailsAnalysis
2528
+ details
2529
+ ownership
2530
+ areBoundariesUniform
2531
+ detailsAnalysis
2532
+ uniformBoundaries
2533
+ left
2534
+ right
2535
+ rear
2536
+ front
2537
+ details
2538
+ attachments
2539
+ haveBoundaryFeaturesMoved
2540
+ yesNo
2541
+ detailsAnalysis
2542
+ details
2543
+ adjacentLandIncluded
2544
+ yesNo
2545
+ detailsAnalysis
2546
+ details
2547
+ flyingFreehold
2548
+ yesNo
2549
+ detailsAnalysis
2550
+ details
2551
+ servicesCrossing
2552
+ pipesWiresCablesDrainsToProperty
2553
+ yesNo
2554
+ details
2555
+ attachments
2556
+ pipesWiresCablesDrainsFromProperty
2557
+ yesNo
2558
+ details
2559
+ attachments
2560
+ formalOrInformalAgreements
2561
+ yesNo
2562
+ details
2563
+ attachments
2564
+ electricalWorks
2565
+ testedByQualifiedElectrician
2566
+ yesNo
2567
+ yearTested
2568
+ attachments
2569
+ electricalWorkSince2005
2570
+ yesNo
2571
+ detailsAnalysis
2572
+ yearWorkCarriedOut
2573
+ details
2574
+ suppliedCertificate
2575
+ certificateType
2576
+ attachments
2577
+ smartHomeSystems
2578
+ hasSmartHomeSystems
2579
+ heatingAndPower
2580
+ yesNo
2581
+ details
2582
+ security
2583
+ yesNo
2584
+ details
2585
+ entertainment
2586
+ yesNo
2587
+ details
2588
+ handoverOnCompletion
2589
+ guaranteesWarrantiesAndIndemnityInsurances
2590
+ hasValidGuaranteesOrWarranties
2591
+ newHomeWarranty
2592
+ yesNo
2593
+ detailsAnalysis
2594
+ details
2595
+ attachments
2596
+ roofingWork
2597
+ yesNo
2598
+ attachments
2599
+ dampProofingTreatment
2600
+ yesNo
2601
+ attachments
2602
+ timberRotOrInfestationTreatment
2603
+ yesNo
2604
+ attachments
2605
+ centralHeatingAndorPlumbing
2606
+ yesNo
2607
+ attachments
2608
+ doubleGlazing
2609
+ yesNo
2610
+ attachments
2611
+ fensaCertificates
2612
+ certificates[
2613
+ certificateId
2614
+ numberOfWindows
2615
+ numberOfDoors
2616
+ certificateIssued
2617
+ workCompleted
2618
+ ]
2619
+ electricalRepairOrInstallation
2620
+ yesNo
2621
+ attachments
2622
+ subsidenceWork
2623
+ yesNo
2624
+ attachments
2625
+ insulation
2626
+ yesNo
2627
+ attachments
2628
+ solarPanels
2629
+ yesNo
2630
+ attachments
2631
+ otherGuarantees
2632
+ yesNo
2633
+ details
2634
+ attachments
2635
+ outstandingClaimsOrApplications
2636
+ yesNo
2637
+ detailsAnalysis
2638
+ details
2639
+ attachments
2640
+ breachOfTermsOrConditions
2641
+ yesNo
2642
+ details
2643
+ titleDefectInsurance
2644
+ yesNo
2645
+ detailsAnalysis
2646
+ details
2647
+ attachments
2648
+ occupiers
2649
+ sellerLivesAtProperty
2650
+ yesNo
2651
+ othersAged17OrOver
2652
+ hasOthersAged17OrOver
2653
+ aged17OrOverNames
2654
+ aged17OrOverTenantsOrLodgers
2655
+ yesNo
2656
+ vacantPossession
2657
+ soldWithVacantPossession
2658
+ details
2659
+ attachments
2660
+ aged17OrOverAgreedToLeave
2661
+ yesNo
2662
+ aged17OrOverWillSignToConfirmWillVacate
2663
+ yesNo
2664
+ details
2665
+ attachments
2666
+ completionAndMoving
2667
+ sellerWillEnsure
2668
+ removeRubbish
2669
+ replaceLightFittings
2670
+ takeReasonableCare
2671
+ leaveKeys
2672
+ otherPropertyInChain
2673
+ yesNo
2674
+ propertyDependencyType
2675
+ dependentPropertyAddress
2676
+ line1
2677
+ line2
2678
+ line3
2679
+ town
2680
+ postcode
2681
+ moveRestrictionDates
2682
+ yesNo
2683
+ details
2684
+ digitalPropertyLogbook
2685
+ yesNo
2686
+ logbookProvider
2687
+ willHandoverLogbook
2688
+ sufficientToRepayAllMortgages
2689
+ yesNo
2690
+ confirmationOfAccuracyByOwners
2691
+ confirmWillProvideAdditionalDocumentation
2692
+ confirmInformationIsAccurate
2693
+ saleReadyDeclarations
2694
+ authorisedToActOnBehalfOfAllSellers
2695
+ authorisationToShare
2696
+ sellerSignatures[
2697
+ name
2698
+ signedOn
2699
+ externalIds{*}
2700
+ ]
2701
+ localSearches
2702
+ localLandCharges[
2703
+ hmlrReference
2704
+ originatingAuthority
2705
+ authorityReference
2706
+ creationDate
2707
+ registrationDate
2708
+ category
2709
+ chargeSubCategory
2710
+ law
2711
+ legalDocument
2712
+ location
2713
+ line1
2714
+ line2
2715
+ postcode
2716
+ locationDominantBuilding
2717
+ line1
2718
+ line2
2719
+ postcode
2720
+ sourceOfInformation
2721
+ availableDocument[
2722
+ document
2723
+ startDate
2724
+ endDate
2725
+ ]
2726
+ interestInLand
2727
+ applicantName
2728
+ applicantAddress
2729
+ line1
2730
+ line2
2731
+ postcode
2732
+ country
2733
+ servientLandDevelopment
2734
+ height
2735
+ coversAllOrPartOfExtent
2736
+ amount
2737
+ interestRate
2738
+ landSold
2739
+ worksDone
2740
+ advancePayment
2741
+ totalCompensation
2742
+ agreedOrEstimated
2743
+ adjoining
2744
+ otherData[
2745
+ dataLabel
2746
+ data
2747
+ ]
2748
+ chargeExtent
2749
+ ]
2750
+ localAuthoritySearches
2751
+ planningAndBuildingRegulations
2752
+ decisionsAndPendingApplications
2753
+ planningPermission[
2754
+ address
2755
+ refNumber
2756
+ isProposal
2757
+ applicationDate
2758
+ decision
2759
+ decisionDate
2760
+ applicationType
2761
+ status
2762
+ url
2763
+ ]
2764
+ listedBuildingConsent[
2765
+ refNumber
2766
+ isProposal
2767
+ applicationDate
2768
+ decision
2769
+ decisionDate
2770
+ applicationType
2771
+ ]
2772
+ conservationAreaConsent[
2773
+ refNumber
2774
+ isProposal
2775
+ applicationDate
2776
+ decision
2777
+ decisionDate
2778
+ applicationType
2779
+ ]
2780
+ lawfulnessOfExistingUse[
2781
+ refNumber
2782
+ isProposal
2783
+ applicationDate
2784
+ decision
2785
+ decisionDate
2786
+ applicationType
2787
+ ]
2788
+ certificateOfLawfulnessOfProposedUse[
2789
+ refNumber
2790
+ isProposal
2791
+ applicationDate
2792
+ decision
2793
+ decisionDate
2794
+ applicationType
2795
+ ]
2796
+ lawfulnessOfProposedListedWorks[
2797
+ refNumber
2798
+ isProposal
2799
+ applicationDate
2800
+ decision
2801
+ decisionDate
2802
+ applicationType
2803
+ ]
2804
+ heritagePartnershipAgreement[
2805
+ refNumber
2806
+ isProposal
2807
+ applicationDate
2808
+ decision
2809
+ decisionDate
2810
+ applicationType
2811
+ ]
2812
+ listedBuildingConsentOrder[
2813
+ refNumber
2814
+ isProposal
2815
+ applicationDate
2816
+ decision
2817
+ decisionDate
2818
+ applicationType
2819
+ ]
2820
+ localListedBuildingConsentOrder[
2821
+ refNumber
2822
+ isProposal
2823
+ applicationDate
2824
+ decision
2825
+ decisionDate
2826
+ applicationType
2827
+ ]
2828
+ buildingRegulationsApproval[
2829
+ refNumber
2830
+ isProposal
2831
+ applicationDate
2832
+ decision
2833
+ decisionDate
2834
+ applicationType
2835
+ ]
2836
+ buildingRegulationsCompletion[
2837
+ refNumber
2838
+ isProposal
2839
+ applicationDate
2840
+ decision
2841
+ decisionDate
2842
+ applicationType
2843
+ ]
2844
+ buildingRegulationsSelfCertification[
2845
+ refNumber
2846
+ isProposal
2847
+ applicationDate
2848
+ decision
2849
+ decisionDate
2850
+ applicationType
2851
+ ]
2852
+ planningStartDate
2853
+ buildingControlStartDate
2854
+ designationsAndProposals
2855
+ plans[
2856
+ name
2857
+ status
2858
+ statusDate
2859
+ designations[
2860
+ designationType
2861
+ ]
2862
+ ]
2863
+ roadsAndPublicRightsOfWay
2864
+ roadsFootwaysAndFootpaths
2865
+ highwaysMaintainableAtPublicExpense[
2866
+ name
2867
+ status
2868
+ ]
2869
+ subjectToAdoption[
2870
+ name
2871
+ status
2872
+ ]
2873
+ toBeMadeUpWithReclaim[
2874
+ name
2875
+ status
2876
+ ]
2877
+ toBeMadeUpWithoutReclaim[
2878
+ name
2879
+ status
2880
+ ]
2881
+ publicRightsOfWay
2882
+ shownOnDefinitiveMap
2883
+ yesNo
2884
+ details
2885
+ pendingApplicationsToRecord
2886
+ yesNo
2887
+ details
2888
+ legalOrdersToStop
2889
+ yesNo
2890
+ details
2891
+ otherMatters
2892
+ landRequiredForPublicPurposes
2893
+ yesNo
2894
+ details
2895
+ landToBeAcquiredForRoadWorks
2896
+ yesNo
2897
+ details
2898
+ drainageMatters
2899
+ propertyServedByASustainableUrbanDrainage
2900
+ yesNo
2901
+ details
2902
+ suDsFeaturesWithinTheBoundaryOfTheProperty
2903
+ yesNo
2904
+ details
2905
+ ifPropertyBenefitsFromASuDsForWhichThereIsAChargeWhoBillsThePropertyForSurfaceWaterDrainageCharge
2906
+ yesNo
2907
+ details
2908
+ nearbyRoadSchemes
2909
+ centreLineOfANewTrunkRoadOrSpecialRoadSpecifiedInAnyOrderDraftOrderOrScheme
2910
+ yesNo
2911
+ details
2912
+ centreLineOfAProposedAlterationOrImprovementToAnExistingRoad
2913
+ yesNo
2914
+ details
2915
+ outerLimitsOfConstructionWorksForAProposedAlterationOrImprovementToAnExistingRoad
2916
+ constructionOfARoundaboutOtherThanAMiniRoundabout
2917
+ yesNo
2918
+ details
2919
+ wideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2920
+ yesNo
2921
+ details
2922
+ outerLimitsOf
2923
+ constructionOfANewRoadToBeBuiltByALocalAuthority
2924
+ yesNo
2925
+ details
2926
+ approvedAlterationOrImprovementToAnExistingRoad
2927
+ yesNo
2928
+ details
2929
+ constructionOfARoundaboutOtherThanAMiniRoundaboutOrWideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2930
+ yesNo
2931
+ details
2932
+ centreLineOfTheProposedRouteOfANewRoad
2933
+ yesNo
2934
+ details
2935
+ outerLimitsOfConstructionUnderProposalsUnderPublicConsultation
2936
+ constructionOfAProposedAlterationOrImprovementToAnExistingRoad
2937
+ yesNo
2938
+ details
2939
+ constructionOfARoundaboutOtherThanAMiniRoundabout
2940
+ yesNo
2941
+ details
2942
+ wideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2943
+ yesNo
2944
+ details
2945
+ nearbyRailwaySchemes
2946
+ propertyWithin200MetersOfTheCentreLineOfAProposedRailwayTramwayLightRailwayOrMonorail
2947
+ yesNo
2948
+ details
2949
+ proposalsForARailwayTramwayLightRailwayOrMonorail
2950
+ yesNo
2951
+ details
2952
+ trafficSchemes
2953
+ permanentStoppingUpOrDiversion
2954
+ yesNo
2955
+ details
2956
+ waitingOrLoadingRestrictions
2957
+ yesNo
2958
+ details
2959
+ oneWayDriving
2960
+ yesNo
2961
+ details
2962
+ prohibitionOfDriving
2963
+ yesNo
2964
+ details
2965
+ pedestrianisation
2966
+ yesNo
2967
+ details
2968
+ vehicleWidthOrWeightRestriction
2969
+ yesNo
2970
+ details
2971
+ trafficCalmingWorks
2972
+ yesNo
2973
+ details
2974
+ residentsParkingControls
2975
+ yesNo
2976
+ details
2977
+ minorRoadWideningOrImprovement
2978
+ yesNo
2979
+ details
2980
+ pedestrianCrossings
2981
+ yesNo
2982
+ details
2983
+ cycleTracks
2984
+ yesNo
2985
+ details
2986
+ bridgeBuilding
2987
+ yesNo
2988
+ details
2989
+ outstandingNotices
2990
+ buildingWorks
2991
+ yesNo
2992
+ details
2993
+ environment
2994
+ yesNo
2995
+ details
2996
+ healthAndSafety
2997
+ yesNo
2998
+ details
2999
+ housing
3000
+ yesNo
3001
+ details
3002
+ highways
3003
+ yesNo
3004
+ details
3005
+ publicHealth
3006
+ yesNo
3007
+ details
3008
+ floodAndCoastalErosionRiskManagement
3009
+ yesNo
3010
+ details
3011
+ contraventionOfBuildingRegulations
3012
+ yesNo
3013
+ details
3014
+ noticesOrdersDirectionsAndProceedingsUnderPlanningActs
3015
+ enforcementNotice
3016
+ yesNo
3017
+ details
3018
+ stopNotice
3019
+ yesNo
3020
+ details
3021
+ listedBuildingEnforcementNotice
3022
+ yesNo
3023
+ details
3024
+ breachOfConditionNotice
3025
+ yesNo
3026
+ details
3027
+ planningContraventionNotice
3028
+ yesNo
3029
+ details
3030
+ anotherNoticeRelatingToBreachOfPlanningControl
3031
+ yesNo
3032
+ details
3033
+ listedBuildingRepairsNotice
3034
+ yesNo
3035
+ details
3036
+ inTheCaseOfAListedBuildingDeliberatelyAllowedToFallIntoDisrepairACompulsoryPurchaseOrderWithADirectionForMinimumCompensation
3037
+ yesNo
3038
+ details
3039
+ buildingPreservationNotice
3040
+ yesNo
3041
+ details
3042
+ directionRestrictingPermittedDevelopment
3043
+ yesNo
3044
+ details
3045
+ orderRevokingOrModifyingPlanningPermission
3046
+ yesNo
3047
+ details
3048
+ orderRequiringDiscontinuanceOfUseOrAlterationOrRemovalOfBuildingOrWorks
3049
+ yesNo
3050
+ details
3051
+ treePreservationOrder
3052
+ yesNo
3053
+ details
3054
+ proceedingsToEnforceAPlanningAgreementOrPlanningContribution
3055
+ yesNo
3056
+ details
3057
+ communityInfrastructureLevy
3058
+ cilChargingSchedule
3059
+ yesNo
3060
+ doAnyOfTheFollowingSubsistInRelationToTheProperty
3061
+ liabilityNotice
3062
+ yesNo
3063
+ details
3064
+ noticeOfChargeableDevelopment
3065
+ yesNo
3066
+ details
3067
+ demandNotice
3068
+ yesNo
3069
+ details
3070
+ defaultLiabilityNotice
3071
+ yesNo
3072
+ details
3073
+ assumptionOfLiabilityNotice
3074
+ yesNo
3075
+ details
3076
+ commencementNotice
3077
+ yesNo
3078
+ details
3079
+ demandNoticeBeenSuspended
3080
+ yesNo
3081
+ details
3082
+ localAuthorityReceivedFullOrPartPaymentOfAnyCilLiability
3083
+ yesNo
3084
+ details
3085
+ localAuthorityReceivedAnyAppealAgainstAnyOfTheAbove
3086
+ yesNo
3087
+ details
3088
+ decisionBeenTakenToApplyForALiabilityOrder
3089
+ yesNo
3090
+ details
3091
+ liabilityOrderBeenGranted
3092
+ yesNo
3093
+ details
3094
+ otherEnforcementMeasuresBeenTaken
3095
+ yesNo
3096
+ details
3097
+ conservationArea
3098
+ makingOfTheAreaAConservationAreaBefore31August1974
3099
+ yesNo
3100
+ details
3101
+ unimplementedResolutionToDesignateTheAreaAConservationArea
3102
+ yesNo
3103
+ details
3104
+ compulsoryPurchase
3105
+ yesNo
3106
+ details
3107
+ contaminatedLand
3108
+ contaminatedLandNotice
3109
+ yesNo
3110
+ details
3111
+ inRelationToARegisterMaintainedUnderSection_78R
3112
+ yesNo
3113
+ details
3114
+ decisionToMakeAnEntry
3115
+ yesNo
3116
+ details
3117
+ entry
3118
+ yesNo
3119
+ details
3120
+ radonGas
3121
+ yesNo
3122
+ details
3123
+ assetsOfCommunityValue
3124
+ propertyBeenNominatedAsAnAssetOfCommunityValue
3125
+ listedAsAnAssetOfCommunityValue
3126
+ yesNo
3127
+ details
3128
+ excludedAndPlacedOnTheNominatedButNotListedList
3129
+ yesNo
3130
+ details
3131
+ listingExpired
3132
+ yesNo
3133
+ details
3134
+ localAuthorityReviewingOrProposingToReviewTheListing
3135
+ yesNo
3136
+ details
3137
+ subsistingAppealsAgainstTheListing
3138
+ yesNo
3139
+ details
3140
+ propertyIsListed
3141
+ localAuthorityDecidedToApplyToTheLandRegistry
3142
+ yesNo
3143
+ details
3144
+ theLocalAuthorityReceivedANoticeOfDisposal
3145
+ yesNo
3146
+ details
3147
+ communityInterestGroupRequestedToBeTreatedAsABidder
3148
+ yesNo
3149
+ details
3150
+ titlesToBeSold[
3151
+ titleNumber
3152
+ titleExtents
3153
+ registerExtract
3154
+ ocSummaryData
3155
+ officialCopyDateTime
3156
+ editionDate
3157
+ pricePaidEntry
3158
+ multipleTitleIndicator
3159
+ entryDetails
3160
+ entryNumber
3161
+ entryText
3162
+ registrationDate
3163
+ subRegisterCode
3164
+ scheduleCode
3165
+ infills
3166
+ propertyAddress
3167
+ postcodeZone
3168
+ postcode
3169
+ addressLine
3170
+ line[]
3171
+ registerEntryIndicators
3172
+ agreedNoticeIndicator
3173
+ bankruptcyIndicator
3174
+ cautionIndicator
3175
+ ccbiIndicator
3176
+ chargeeIndicator
3177
+ chargeIndicator
3178
+ chargeRelatedRestrictionIndicator
3179
+ chargeRestrictionIndicator
3180
+ creditorsNoticeIndicator
3181
+ deathOfProprietorIndicator
3182
+ deedOfPostponementIndicator
3183
+ discountChargeIndicator
3184
+ equitableChargeIndicator
3185
+ greenOutEntryIndicator
3186
+ homeRightsChangeOfAddressIndicator
3187
+ homeRightsIndicator
3188
+ leaseHoldTitleIndicator
3189
+ multipleChargeIndicator
3190
+ nonChargeRestrictionIndicator
3191
+ notedChargeIndicator
3192
+ pricePaidIndicator
3193
+ propertyDescriptionNotesIndicator
3194
+ rentChargeIndicator
3195
+ rightOfPreEmptionIndicator
3196
+ scheduleOfLeasesIndicator
3197
+ subChargeIndicator
3198
+ unidentifiedEntryIndicator
3199
+ unilateralNoticeBeneficiaryIndicator
3200
+ unilateralNoticeIndicator
3201
+ vendorsLienIndicator
3202
+ proprietorship
3203
+ currentProprietorshipDate
3204
+ cautionerParty
3205
+ privateIndividual
3206
+ name
3207
+ forenamesName
3208
+ surnameName
3209
+ alias
3210
+ forenamesName
3211
+ surnameName
3212
+ organization
3213
+ name
3214
+ companyRegistrationNumber
3215
+ address
3216
+ postcodeZone
3217
+ postcode
3218
+ addressLine
3219
+ line[]
3220
+ charityDetails
3221
+ charityName
3222
+ charityAddress
3223
+ postcodeZone
3224
+ postcode
3225
+ addressLine
3226
+ line[]
3227
+ charityType
3228
+ value
3229
+ tradingName
3230
+ partyNumber
3231
+ partyDescription
3232
+ registeredProprietorParty
3233
+ privateIndividual
3234
+ name
3235
+ forenamesName
3236
+ surnameName
3237
+ alias
3238
+ forenamesName
3239
+ surnameName
3240
+ organization
3241
+ name
3242
+ companyRegistrationNumber
3243
+ address
3244
+ postcodeZone
3245
+ postcode
3246
+ addressLine
3247
+ line[]
3248
+ charityDetails
3249
+ charityName
3250
+ charityAddress
3251
+ postcodeZone
3252
+ postcode
3253
+ addressLine
3254
+ line[]
3255
+ charityType
3256
+ value
3257
+ tradingName
3258
+ partyNumber
3259
+ partyDescription
3260
+ lease
3261
+ leaseEntry[
3262
+ leaseTerm
3263
+ leaseDate
3264
+ Rent
3265
+ leaseParty[
3266
+ privateIndividual
3267
+ name
3268
+ forenamesName
3269
+ surnameName
3270
+ alias
3271
+ forenamesName
3272
+ surnameName
3273
+ organization
3274
+ name
3275
+ companyRegistrationNumber
3276
+ address
3277
+ postcodeZone
3278
+ postcode
3279
+ addressLine
3280
+ line[]
3281
+ charityDetails
3282
+ charityName
3283
+ charityAddress
3284
+ postcodeZone
3285
+ postcode
3286
+ addressLine
3287
+ line[]
3288
+ charityType
3289
+ value
3290
+ tradingName
3291
+ partyNumber
3292
+ partyDescription
3293
+ ]
3294
+ entryDetails
3295
+ entryNumber
3296
+ entryText
3297
+ registrationDate
3298
+ subRegisterCode
3299
+ scheduleCode
3300
+ infills
3301
+ ]
3302
+ restrictionDetails
3303
+ restrictionEntry
3304
+ chargeRelatedRestriction
3305
+ restrictionTypeCode
3306
+ chargeID
3307
+ entryDetails
3308
+ entryNumber
3309
+ entryText
3310
+ registrationDate
3311
+ subRegisterCode
3312
+ scheduleCode
3313
+ infills
3314
+ chargeRestriction
3315
+ restrictionTypeCode
3316
+ chargeID
3317
+ entryDetails
3318
+ entryNumber
3319
+ entryText
3320
+ registrationDate
3321
+ subRegisterCode
3322
+ scheduleCode
3323
+ infills
3324
+ nonChargeRestriction
3325
+ restrictionTypeCode
3326
+ chargeID
3327
+ entryDetails
3328
+ entryNumber
3329
+ entryText
3330
+ registrationDate
3331
+ subRegisterCode
3332
+ scheduleCode
3333
+ infills
3334
+ charge
3335
+ chargeEntry
3336
+ chargeID
3337
+ chargeDate
3338
+ registeredCharge
3339
+ multipleTitleIndicator
3340
+ entryDetails
3341
+ entryNumber
3342
+ entryText
3343
+ registrationDate
3344
+ subRegisterCode
3345
+ scheduleCode
3346
+ infills
3347
+ chargeProprietor
3348
+ chargeeParty
3349
+ privateIndividual
3350
+ name
3351
+ forenamesName
3352
+ surnameName
3353
+ alias
3354
+ forenamesName
3355
+ surnameName
3356
+ organization
3357
+ name
3358
+ companyRegistrationNumber
3359
+ address
3360
+ postcodeZone
3361
+ postcode
3362
+ addressLine
3363
+ line[]
3364
+ charityDetails
3365
+ charityName
3366
+ charityAddress
3367
+ postcodeZone
3368
+ postcode
3369
+ addressLine
3370
+ line[]
3371
+ charityType
3372
+ value
3373
+ tradingName
3374
+ partyNumber
3375
+ partyDescription
3376
+ entryDetails
3377
+ entryNumber
3378
+ entryText
3379
+ registrationDate
3380
+ subRegisterCode
3381
+ scheduleCode
3382
+ infills
3383
+ subCharge
3384
+ chargeDate
3385
+ registeredCharge
3386
+ multipleTitleIndicator
3387
+ entryDetails
3388
+ entryNumber
3389
+ entryText
3390
+ registrationDate
3391
+ subRegisterCode
3392
+ scheduleCode
3393
+ infills
3394
+ chargeProprietor
3395
+ chargeeParty
3396
+ privateIndividual
3397
+ name
3398
+ forenamesName
3399
+ surnameName
3400
+ alias
3401
+ forenamesName
3402
+ surnameName
3403
+ organization
3404
+ name
3405
+ companyRegistrationNumber
3406
+ address
3407
+ postcodeZone
3408
+ postcode
3409
+ addressLine
3410
+ line[]
3411
+ charityDetails
3412
+ charityName
3413
+ charityAddress
3414
+ postcodeZone
3415
+ postcode
3416
+ addressLine
3417
+ line[]
3418
+ charityType
3419
+ value
3420
+ tradingName
3421
+ partyNumber
3422
+ partyDescription
3423
+ entryDetails
3424
+ entryNumber
3425
+ entryText
3426
+ registrationDate
3427
+ subRegisterCode
3428
+ scheduleCode
3429
+ infills
3430
+ agreedNotice
3431
+ agreedNoticeEntry
3432
+ agreedNoticeType
3433
+ entryDetails
3434
+ entryNumber
3435
+ entryText
3436
+ registrationDate
3437
+ subRegisterCode
3438
+ scheduleCode
3439
+ infills
3440
+ bankruptcy
3441
+ entryDetails
3442
+ entryNumber
3443
+ entryText
3444
+ registrationDate
3445
+ subRegisterCode
3446
+ scheduleCode
3447
+ infills
3448
+ caution
3449
+ entryDetails
3450
+ entryNumber
3451
+ entryText
3452
+ registrationDate
3453
+ subRegisterCode
3454
+ scheduleCode
3455
+ infills
3456
+ deedOfPostponement
3457
+ entryDetails
3458
+ entryNumber
3459
+ entryText
3460
+ registrationDate
3461
+ subRegisterCode
3462
+ scheduleCode
3463
+ infills
3464
+ greenOutEntry
3465
+ entryDetails
3466
+ entryNumber
3467
+ entryText
3468
+ registrationDate
3469
+ subRegisterCode
3470
+ scheduleCode
3471
+ infills
3472
+ homeRights
3473
+ homeRightsEntry
3474
+ changeOfAddressIndicator
3475
+ homeRightsEntryDetails
3476
+ entryNumber
3477
+ entryText
3478
+ registrationDate
3479
+ subRegisterCode
3480
+ scheduleCode
3481
+ infills
3482
+ changeOfAddressEntryDetails
3483
+ entryNumber
3484
+ entryText
3485
+ registrationDate
3486
+ subRegisterCode
3487
+ scheduleCode
3488
+ infills
3489
+ rentCharge
3490
+ entryDetails
3491
+ entryNumber
3492
+ entryText
3493
+ registrationDate
3494
+ subRegisterCode
3495
+ scheduleCode
3496
+ infills
3497
+ vendorsLien
3498
+ entryDetails
3499
+ entryNumber
3500
+ entryText
3501
+ registrationDate
3502
+ subRegisterCode
3503
+ scheduleCode
3504
+ infills
3505
+ rightOfPreEmption
3506
+ entryDetails
3507
+ entryNumber
3508
+ entryText
3509
+ registrationDate
3510
+ subRegisterCode
3511
+ scheduleCode
3512
+ infills
3513
+ documentDetails
3514
+ document
3515
+ documentType
3516
+ documentDate
3517
+ entryNumber
3518
+ planOnlyIndicator
3519
+ filedUnder
3520
+ registerDescription
3521
+ unilateralNoticeDetails
3522
+ unilateralNoticeEntry
3523
+ unilateralNotice
3524
+ entryNumber
3525
+ entryText
3526
+ registrationDate
3527
+ subRegisterCode
3528
+ scheduleCode
3529
+ infills
3530
+ unilateralNoticeBeneficiary
3531
+ entryNumber
3532
+ entryText
3533
+ registrationDate
3534
+ subRegisterCode
3535
+ scheduleCode
3536
+ infills
3537
+ deathOfProprietor
3538
+ entryDetails
3539
+ entryNumber
3540
+ entryText
3541
+ registrationDate
3542
+ subRegisterCode
3543
+ scheduleCode
3544
+ infills
3545
+ discountCharge
3546
+ entryDetails
3547
+ entryNumber
3548
+ entryText
3549
+ registrationDate
3550
+ subRegisterCode
3551
+ scheduleCode
3552
+ infills
3553
+ equitableCharge
3554
+ entryDetails
3555
+ entryNumber
3556
+ entryText
3557
+ registrationDate
3558
+ subRegisterCode
3559
+ scheduleCode
3560
+ infills
3561
+ notedCharge
3562
+ entryDetails
3563
+ entryNumber
3564
+ entryText
3565
+ registrationDate
3566
+ subRegisterCode
3567
+ scheduleCode
3568
+ infills
3569
+ creditorsNotice
3570
+ entryDetails
3571
+ entryNumber
3572
+ entryText
3573
+ registrationDate
3574
+ subRegisterCode
3575
+ scheduleCode
3576
+ infills
3577
+ unidentifiedEntry
3578
+ entryDetails
3579
+ entryNumber
3580
+ entryText
3581
+ registrationDate
3582
+ subRegisterCode
3583
+ scheduleCode
3584
+ infills
3585
+ ccbiEntry
3586
+ entryDetails
3587
+ entryNumber
3588
+ entryText
3589
+ registrationDate
3590
+ subRegisterCode
3591
+ scheduleCode
3592
+ infills
3593
+ ocRegisterData
3594
+ propertyRegister
3595
+ districtDetails
3596
+ entryText
3597
+ registerEntry
3598
+ entryNumber
3599
+ entryDate
3600
+ entryType
3601
+ entryText
3602
+ schedule
3603
+ scheduleType
3604
+ scheduleEntry
3605
+ entryNumber
3606
+ entryDate
3607
+ entryType
3608
+ entryText
3609
+ proprietorshipRegister
3610
+ districtDetails
3611
+ entryText
3612
+ registerEntry
3613
+ entryNumber
3614
+ entryDate
3615
+ entryType
3616
+ entryText
3617
+ schedule
3618
+ scheduleType
3619
+ scheduleEntry
3620
+ entryNumber
3621
+ entryDate
3622
+ entryType
3623
+ entryText
3624
+ chargesRegister
3625
+ districtDetails
3626
+ entryText
3627
+ registerEntry
3628
+ entryNumber
3629
+ entryDate
3630
+ entryType
3631
+ entryText
3632
+ schedule
3633
+ scheduleType
3634
+ scheduleEntry
3635
+ entryNumber
3636
+ entryDate
3637
+ entryType
3638
+ entryText
3639
+ additionalDocuments[
3640
+ documentType
3641
+ documentTypeCode
3642
+ documentDate
3643
+ retrievedOn
3644
+ filedUnder
3645
+ summary
3646
+ availability
3647
+ availabilityCode
3648
+ entryNumbers[]
3649
+ backdated
3650
+ ]
3651
+ keyFacts
3652
+ covenantAnalysis
3653
+ ]
3654
+ searches[
3655
+ displayName
3656
+ productCode
3657
+ providerName
3658
+ providerReference
3659
+ status
3660
+ orderDate
3661
+ expectedDeliveryDate
3662
+ searchContentTypes[]
3663
+ reportDate
3664
+ ]
3665
+ documents[
3666
+ displayName
3667
+ fileName
3668
+ mimeType
3669
+ documentType
3670
+ externalIds{*}
3671
+ isDeleted
3672
+ summary
3673
+ ]
3674
+ surveys[
3675
+ outside
3676
+ chimneyStacks
3677
+ condition
3678
+ inspectionLimitations
3679
+ defects
3680
+ advisories
3681
+ notes
3682
+ visibility
3683
+ visibilityRestriction
3684
+ flashings
3685
+ defectsFlag
3686
+ defectsList
3687
+ photos[
3688
+ photoId
3689
+ report
3690
+ ]
3691
+ roofCoverings
3692
+ condition
3693
+ defects
3694
+ advisories
3695
+ notes
3696
+ visibility
3697
+ restriction
3698
+ features
3699
+ mainPitchedCovering
3700
+ mainPitchedFeatures
3701
+ mainFlatCovering
3702
+ mainFlatFeatures
3703
+ additionalPitchedCovering
3704
+ additionalPitchedFeatures
3705
+ additionalDetail
3706
+ additionalFeatures
3707
+ bay
3708
+ bayFeatures
3709
+ dormer
3710
+ dormerFeatures
3711
+ defectsGeneral
3712
+ photos[
3713
+ photoId
3714
+ report
3715
+ ]
3716
+ mainPitchedDefects
3717
+ mainPitchedDefectsDetail
3718
+ mainFlatDefects
3719
+ mainFlatDefectsDetail
3720
+ additionalPitchedDefects
3721
+ additionalPitchedDefectsDetail
3722
+ additionalFlatDefects
3723
+ additionalFlatDefectsDetail
3724
+ bayDefects
3725
+ bayDefectsDetail
3726
+ dormerDefects
3727
+ dormerDefectsDetail
3728
+ rainwaterPipesGutters
3729
+ condition
3730
+ inspectionLimitations
3731
+ defects
3732
+ advisories
3733
+ notes
3734
+ visibility
3735
+ restrictions
3736
+ features
3737
+ gutterDescription
3738
+ downpipeDescription
3739
+ hopperHeadDescription
3740
+ gutterIssues
3741
+ gutterIssueLocation
3742
+ gutterDefect
3743
+ downpipeDefect
3744
+ hopperHeadDefect
3745
+ photos[
3746
+ photoId
3747
+ report
3748
+ ]
3749
+ mainWalls
3750
+ condition
3751
+ inspectionLimitations
3752
+ defects
3753
+ advisories
3754
+ notes
3755
+ visibility
3756
+ restrictions
3757
+ externalElevation
3758
+ construction
3759
+ features
3760
+ dpc
3761
+ structuralMovement
3762
+ movementType
3763
+ movementCause
3764
+ movementStatus
3765
+ otherDefects
3766
+ otherDefectsDescription
3767
+ cladding
3768
+ fireRisk
3769
+ advice
3770
+ extensions
3771
+ movementLocation
3772
+ photos[
3773
+ photoId
3774
+ report
3775
+ ]
3776
+ extension1
3777
+ detail
3778
+ construction
3779
+ dpc
3780
+ defects
3781
+ defectDescription
3782
+ movementType
3783
+ movementCause
3784
+ movementStatus
3785
+ extension2
3786
+ detail
3787
+ construction
3788
+ dpc
3789
+ defects
3790
+ defectDescription
3791
+ movementType
3792
+ movementCause
3793
+ movementStatus
3794
+ extension3
3795
+ detail
3796
+ construction
3797
+ dpc
3798
+ defects
3799
+ defectDescription
3800
+ movementType
3801
+ movementCause
3802
+ movementStatus
3803
+ windows
3804
+ condition
3805
+ inspectionLimitations
3806
+ defects
3807
+ advisories
3808
+ notes
3809
+ visibility
3810
+ visibilityRestrictions
3811
+ glazingType
3812
+ glazingDescription
3813
+ glazingHeight
3814
+ glazingSafety
3815
+ glazingDefects
3816
+ glazingDefectList
3817
+ photos[
3818
+ photoId
3819
+ report
3820
+ ]
3821
+ outsideDoors
3822
+ condition
3823
+ inspectionLimitations
3824
+ defects
3825
+ advisories
3826
+ notes
3827
+ visibility
3828
+ restrictions
3829
+ glazingDescription
3830
+ glazingType
3831
+ glazingHeight
3832
+ glazingSafety
3833
+ glazingDefects
3834
+ glazingDefectDetails
3835
+ photos[
3836
+ photoId
3837
+ report
3838
+ ]
3839
+ conservatoryPorches
3840
+ condition
3841
+ inspectionLimitations
3842
+ defects
3843
+ advisories
3844
+ notes
3845
+ conservatory
3846
+ porch
3847
+ restrictions
3848
+ visibility
3849
+ conservatoryWall
3850
+ conservatoryFrame
3851
+ conservatoryGlazing
3852
+ conservatoryRoof
3853
+ conservatorySeparate
3854
+ conservatoryHeating
3855
+ porchWall
3856
+ porchFrame
3857
+ porchGlazing
3858
+ porchRoof
3859
+ porchPitched
3860
+ porchFlat
3861
+ defectsFlag
3862
+ defectLocation
3863
+ conservatoryEconomic
3864
+ conservatoryStructural
3865
+ conservatoryMovement
3866
+ conservatoryMovementCause
3867
+ conservatoryMovementStatus
3868
+ conservatoryDefects
3869
+ conservatoryDefectDetail
3870
+ porchEconomic
3871
+ porchStructural
3872
+ porchMovement
3873
+ porchMovementCause
3874
+ porchMovementStatus
3875
+ porchDefects
3876
+ porchDefectDetail
3877
+ photos[
3878
+ photoId
3879
+ report
3880
+ ]
3881
+ otherJoinery
3882
+ condition
3883
+ inspectionLimitations
3884
+ defects
3885
+ advisories
3886
+ notes
3887
+ visibility
3888
+ restrictions
3889
+ features
3890
+ fasciaDescription
3891
+ bargeboardsDescription
3892
+ soffitsDescription
3893
+ claddingDescription
3894
+ issues
3895
+ issueLocation
3896
+ issueDetail
3897
+ photos[
3898
+ photoId
3899
+ report
3900
+ ]
3901
+ other
3902
+ condition
3903
+ inspectionLimitations
3904
+ defects
3905
+ advisories
3906
+ notes
3907
+ visibility
3908
+ defectsFlag
3909
+ defectDetail
3910
+ fireSafety
3911
+ photos[
3912
+ photoId
3913
+ report
3914
+ ]
3915
+ inside
3916
+ roofStructure
3917
+ condition
3918
+ inspectionLimitations
3919
+ defects
3920
+ advisories
3921
+ notes
3922
+ visibility
3923
+ restrictions
3924
+ lining
3925
+ insulation
3926
+ firewall
3927
+ features
3928
+ photos
3929
+ photoId
3930
+ report
3931
+ additional1Visibility
3932
+ additional1Restrictions
3933
+ additional1Description
3934
+ additional1Lining
3935
+ additional1Insulation
3936
+ additional1Defects
3937
+ additional1DefectDetail
3938
+ additional2Visibility
3939
+ additional2Restrictions
3940
+ additional2Description
3941
+ additional2Lining
3942
+ additional2Insulation
3943
+ additional2Defects
3944
+ additional2DefectDetail
3945
+ defectDetail
3946
+ ceilings
3947
+ condition
3948
+ inspectionLimitations
3949
+ defects
3950
+ advisories
3951
+ notes
3952
+ visibility
3953
+ restrictions
3954
+ defectDetail
3955
+ integralGarageDefects
3956
+ photos
3957
+ photoId
3958
+ report
3959
+ wallsPartitions
3960
+ condition
3961
+ inspectionLimitations
3962
+ defects
3963
+ advisories
3964
+ notes
3965
+ visibility
3966
+ restrictions
3967
+ construction
3968
+ adequateSupport
3969
+ wallFinish
3970
+ defectsMinor
3971
+ defectsMajor
3972
+ photos
3973
+ photoId
3974
+ report
3975
+ floors
3976
+ condition
3977
+ inspectionLimitations
3978
+ defects
3979
+ advisories
3980
+ notes
3981
+ visibility
3982
+ restrictions
3983
+ generalDefects
3984
+ solidDefects
3985
+ timberDefects
3986
+ photos
3987
+ photoId
3988
+ report
3989
+ fireplaces
3990
+ condition
3991
+ inspectionLimitations
3992
+ defects
3993
+ advisories
3994
+ notes
3995
+ visibility
3996
+ restrictions
3997
+ defectDetail
3998
+ photos
3999
+ photoId
4000
+ report
4001
+ builtinFittings
4002
+ condition
4003
+ inspectionLimitations
4004
+ defects
4005
+ advisories
4006
+ notes
4007
+ visibility
4008
+ restrictions
4009
+ defectDetail
4010
+ advice
4011
+ photos
4012
+ photoId
4013
+ report
4014
+ woodwork
4015
+ condition
4016
+ inspectionLimitations
4017
+ defects
4018
+ advisories
4019
+ notes
4020
+ visibility
4021
+ restrictions
4022
+ doorDescription
4023
+ stairDescription
4024
+ joineryDescription
4025
+ defectsDetail
4026
+ defectsDoorsWindows
4027
+ defectsStairs
4028
+ photos
4029
+ photoId
4030
+ report
4031
+ bathroomFittings
4032
+ condition
4033
+ inspectionLimitations
4034
+ defects
4035
+ advisories
4036
+ notes
4037
+ visibility
4038
+ restrictions
4039
+ defectDetail
4040
+ photos
4041
+ photoId
4042
+ report
4043
+ other
4044
+ condition
4045
+ inspectionLimitations
4046
+ defects
4047
+ advisories
4048
+ notes
4049
+ visibility
4050
+ roofConversion
4051
+ cellar
4052
+ commonAreas
4053
+ alarms
4054
+ defectsRoof
4055
+ defectsBasement
4056
+ defectsOther
4057
+ photos
4058
+ photoId
4059
+ report
4060
+ services
4061
+ electricity
4062
+ condition
4063
+ inspectionLimitations
4064
+ defects
4065
+ advisories
4066
+ notes
4067
+ photos[
4068
+ photoId
4069
+ report
4070
+ ]
4071
+ visibility
4072
+ restrictions
4073
+ meter
4074
+ consumerUnit
4075
+ cutOffDevices
4076
+ wiring
4077
+ additionalFeatures
4078
+ supplementary
4079
+ testCertificate
4080
+ defectsPresent
4081
+ defectDetail
4082
+ gasOil
4083
+ condition
4084
+ inspectionLimitations
4085
+ defects
4086
+ advisories
4087
+ notes
4088
+ photos[
4089
+ photoId
4090
+ report
4091
+ ]
4092
+ visibility
4093
+ restrictions
4094
+ meter
4095
+ privateGas
4096
+ tankLocation
4097
+ tankInside
4098
+ tankOutside
4099
+ tankType
4100
+ testCertificate
4101
+ defectsPresent
4102
+ defectDetail
4103
+ water
4104
+ condition
4105
+ inspectionLimitations
4106
+ defects
4107
+ advisories
4108
+ notes
4109
+ photos[
4110
+ photoId
4111
+ report
4112
+ ]
4113
+ visibility
4114
+ restrictions
4115
+ stopTap
4116
+ supply
4117
+ distribution
4118
+ storageTank
4119
+ defectsPresent
4120
+ defectDetail
4121
+ heating
4122
+ condition
4123
+ inspectionLimitations
4124
+ defects
4125
+ advisories
4126
+ notes
4127
+ photos[
4128
+ photoId
4129
+ report
4130
+ ]
4131
+ visibility
4132
+ restrictions
4133
+ extent
4134
+ source
4135
+ emitter
4136
+ pipework
4137
+ controls
4138
+ otherFeatures
4139
+ testCertificate
4140
+ defectsPresent
4141
+ defectDetail
4142
+ waterHeating
4143
+ condition
4144
+ inspectionLimitations
4145
+ defects
4146
+ advisories
4147
+ notes
4148
+ photos[
4149
+ photoId
4150
+ report
4151
+ ]
4152
+ visibility
4153
+ restrictions
4154
+ primarySource
4155
+ supplementarySource
4156
+ storage
4157
+ pipework
4158
+ defectsPresent
4159
+ defectDetail
4160
+ drainage
4161
+ condition
4162
+ inspectionLimitations
4163
+ defects
4164
+ advisories
4165
+ notes
4166
+ photos[
4167
+ photoId
4168
+ report
4169
+ ]
4170
+ visibility
4171
+ restrictions
4172
+ system
4173
+ privateSystem
4174
+ location
4175
+ runOff
4176
+ features
4177
+ defectsPresent
4178
+ defectDetail
4179
+ commonServices
4180
+ condition
4181
+ inspectionLimitations
4182
+ defects
4183
+ advisories
4184
+ notes
4185
+ photos[
4186
+ photoId
4187
+ report
4188
+ ]
4189
+ visibility
4190
+ type
4191
+ defectsPresent
4192
+ defectDetail
4193
+ grounds
4194
+ garage
4195
+ condition
4196
+ inspectionLimitations
4197
+ defects
4198
+ advisories
4199
+ notes
4200
+ photos
4201
+ photoId
4202
+ report
4203
+ visibility
4204
+ restrictions
4205
+ wallConstruction
4206
+ roofConstruction
4207
+ location
4208
+ structuralMovement
4209
+ movementType
4210
+ movementStatus
4211
+ hasDefects
4212
+ defectDetail
4213
+ permanentOutbuildings
4214
+ condition
4215
+ inspectionLimitations
4216
+ defects
4217
+ advisories
4218
+ notes
4219
+ photos
4220
+ photoId
4221
+ report
4222
+ visibility
4223
+ restrictions
4224
+ type
4225
+ wallConstruction
4226
+ roofConstruction
4227
+ location
4228
+ hasDefects
4229
+ defectDetail
4230
+ other
4231
+ condition
4232
+ inspectionLimitations
4233
+ defects
4234
+ advisories
4235
+ notes
4236
+ photos
4237
+ photoId
4238
+ report
4239
+ visibility
4240
+ restrictions
4241
+ gardens
4242
+ exceed1Acre
4243
+ boundaries
4244
+ fenceDescription
4245
+ fenceIssues
4246
+ fenceDefects
4247
+ wallDescription
4248
+ wallIssues
4249
+ wallDefects
4250
+ hedgeDescription
4251
+ hedgeIssues
4252
+ hedgeDefects
4253
+ otherBoundaryDescription
4254
+ hardscaping
4255
+ drivewayLandscaping
4256
+ driveMaterial
4257
+ driveDefects
4258
+ driveDefectDetail
4259
+ patioMaterial
4260
+ patioDefects
4261
+ patioDefectDetail
4262
+ pathMaterial
4263
+ pathDefects
4264
+ pathDefectDetail
4265
+ deckingMaterial
4266
+ deckingDefects
4267
+ deckingDefectDetail
4268
+ buildingRegs
4269
+ otherFeatures
4270
+ japaneseKnotweed
4271
+ otherDefects
4272
+ otherDefectDetail
4273
+ legalIssues
4274
+ notes
4275
+ regulation
4276
+ guarantees
4277
+ otherMatters
4278
+ rightsOfWay
4279
+ risks
4280
+ buildingRisks
4281
+ groundsRisks
4282
+ peopleRisks
4283
+ otherRisks
4284
+ propertyValuation
4285
+ valuation
4286
+ valuationDiscriminator
4287
+ value
4288
+ valueWords
4289
+ reinstatement
4290
+ reinstatementWords
4291
+ tenure
4292
+ lease
4293
+ areaOfProperty
4294
+ valuationInformation
4295
+ additionalAssumptions
4296
+ considerations
4297
+ declaration
4298
+ surveyorQuals
4299
+ companyAddress
4300
+ phoneNumber
4301
+ faxNumber
4302
+ email
4303
+ website
4304
+ clientName
4305
+ misc
4306
+ photoFront
4307
+ value
4308
+ photoId
4309
+ report
4310
+ areaOfProperty
4311
+ value
4312
+ photoId
4313
+ report
4314
+ reportDate
4315
+ epc
4316
+ agentName
4317
+ access
4318
+ propertyQuestions
4319
+ propertyChanges
4320
+ alterations
4321
+ furnishings
4322
+ floorCoverings
4323
+ propertyType
4324
+ accommodationLocation
4325
+ propertyStyle
4326
+ topography
4327
+ floodingRisk
4328
+ coastalLocation
4329
+ siteRisk
4330
+ highVoltage
4331
+ buildFormat
4332
+ areaDetails
4333
+ groundRentType
4334
+ conservationArea
4335
+ valuationFactor
4336
+ conflict
4337
+ conflictType
4338
+ suspiciousActivity
4339
+ btl
4340
+ photoConsent
4341
+ adjacentCommercial
4342
+ commercialLocation
4343
+ commercialTypeAbove
4344
+ commercialTypeAdjacent
4345
+ separateAccess
4346
+ communal
4347
+ communalFacilities
4348
+ listedBuilding
4349
+ listedClassification
4350
+ exla
4351
+ exNature
4352
+ tenureSource
4353
+ roadType
4354
+ roadMadeUp
4355
+ pedestrian
4356
+ constructionType
4357
+ nonTradType
4358
+ nonTradSystem
4359
+ designatedDefective
4360
+ epcAvailable
4361
+ epcReason
4362
+ epcDiscrepancies
4363
+ epcDiscrepancyDetail
4364
+ ]
4365
+ valuations[
4366
+ valuationId
4367
+ valuationTimestamp
4368
+ capitalValue
4369
+ confidenceLevel
4370
+ confidenceBand
4371
+ rentalValue
4372
+ rentalConfidenceLevel
4373
+ reinstatementCost
4374
+ checkValuationResult
4375
+ instructionType
4376
+ valuationContext
4377
+ valuationType
4378
+ ]
4379
+ valuationComparisonData
4380
+ propertyDetails[
4381
+ propertyListingInfo
4382
+ listingType
4383
+ soldDate
4384
+ soldPrice
4385
+ listedDate
4386
+ listPrice
4387
+ propertyFullDescription
4388
+ uprn
4389
+ propertyType
4390
+ marketingTenure
4391
+ basicDetails
4392
+ bedrooms
4393
+ bathrooms
4394
+ buildInformation
4395
+ internalArea
4396
+ area
4397
+ units
4398
+ yearOfBuild
4399
+ media[
4400
+ mediaType
4401
+ mediaUrl
4402
+ caption
4403
+ ]
4404
+ ]
4405
+ propertyPricing
4406
+ rentalEstimate
4407
+ estimatedAmount
4408
+ paymentFrequency
4409
+ estimatedPrice
4410
+ yield
4411
+ priceEstimationDetails
4412
+ credibilitySources[]
4413
+ pricingMethodology
4414
+ contracts[
4415
+ contract
4416
+ template
4417
+ name
4418
+ url
4419
+ externalIds{*}
4420
+ requiredSignatories[
4421
+ role
4422
+ requiresAll
4423
+ ]
4424
+ terms
4425
+ signatures[
4426
+ name
4427
+ signedOn
4428
+ externalIds{*}
4429
+ ]
4430
+ ]
4431
+ chain
4432
+ onwardPurchase[
4433
+ transactionId
4434
+ externalIds{*}
4435
+ address
4436
+ buildingNumber
4437
+ buildingName
4438
+ subBuilding
4439
+ street
4440
+ line1
4441
+ line2
4442
+ line 3
4443
+ town
4444
+ postcode
4445
+ homeNation
4446
+ uprn
4447
+ sellingAgent
4448
+ ]
4449
+ milestones
4450
+ listed
4451
+ expected
4452
+ completed
4453
+ legalForms
4454
+ started
4455
+ completed
4456
+ soldSubjectToContract
4457
+ completed
4458
+ searches
4459
+ started
4460
+ expected
4461
+ completed
4462
+ enquiries
4463
+ started
4464
+ completed
4465
+ exchangeOfContracts
4466
+ expected
4467
+ completed
4468
+ completion
4469
+ started
4470
+ expected
4471
+ completed
4472
+ offers{*}
4473
+ amount
4474
+ currency
4475
+ status
4476
+ inclusions[]
4477
+ exclusions[]
4478
+ conditions[]
4479
+ externalIds{*}
4480
+ buyerCircumstances
4481
+ intendedUse
4482
+ firstTimeBuyer
4483
+ rightToBuy
4484
+ ltdCompanyPurchase
4485
+ numberOfOwners
4486
+ numberOfExpats
4487
+ giftedEquity
4488
+ numberOfGiftedDeposits
4489
+ requiresMortgage
4490
+ helpToBuyEquityLoan
4491
+ armedForcesHelpToBuy
4492
+ numberOfHelpToBuyIsas
4493
+ bridgingFinanceRepresentation
4494
+ depositAmount
4495
+ loanToValue
4496
+ numberOfBorrowers
4497
+ jointProprietorSoleMortgagor
4498
+ soleProprietorJointMortgagor
4499
+ deedOfPostponement
4500
+ separateRepresentation
4501
+ oldestBorrowerAge
4502
+ mortgageTerm
4503
+ adverseCredit
4504
+ employmentType
4505
+ existingMortgagedProperties
4506
+ annualIncome
4507
+ residencyStatus
4508
+ nominatedLender
4509
+ enquiries{*}
4510
+ subject
4511
+ status
4512
+ messages{*}
4513
+ datetime
4514
+ originatorRole
4515
+ destinationRole
4516
+ messageText
4517
+ pdtfPath
4518
+ externalIds{*}
4519
+ resolutionCondition