@pdtf/schemas 3.6.0-4 → 3.6.0-41
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.
- package/.claude/plans/not-seeing-associated-costs.md +99 -0
- package/.claude/settings.local.json +22 -3
- package/README.md +52 -33
- package/docs/sef25-extensions-ui-spec.md +355 -0
- package/index.js +130 -66
- package/package.json +4 -2
- package/src/examples/v3/exampleTransaction.json +3 -3
- package/src/schemas/v3/combined.json +7651 -1672
- package/src/schemas/v3/compactSkeleton.txt +365 -14
- package/src/schemas/v3/overlays/baspi4.json +163 -18
- package/src/schemas/v3/overlays/baspi5.json +168 -20
- package/src/schemas/v3/overlays/extensions/as.json +4 -2
- package/src/schemas/v3/overlays/extensions/dk.json +32 -0
- package/src/schemas/v3/overlays/extensions/dr.json +9 -9
- package/src/schemas/v3/overlays/extensions/er.json +4 -2
- package/src/schemas/v3/overlays/extensions/fd.json +6 -3
- package/src/schemas/v3/overlays/extensions/hi.json +6 -3
- package/src/schemas/v3/overlays/extensions/hs.json +4 -2
- package/src/schemas/v3/overlays/extensions/ic.json +59 -0
- package/src/schemas/v3/overlays/extensions/jk.json +28 -8
- package/src/schemas/v3/overlays/extensions/la.json +4 -2
- package/src/schemas/v3/overlays/extensions/lc.json +75 -0
- package/src/schemas/v3/overlays/extensions/ma.json +6 -3
- package/src/schemas/v3/overlays/extensions/mc.json +4 -2
- package/src/schemas/v3/overlays/extensions/mi.json +69 -0
- package/src/schemas/v3/overlays/extensions/nd.json +43 -0
- package/src/schemas/v3/overlays/extensions/oa.json +4 -2
- package/src/schemas/v3/overlays/extensions/oc.json +4 -2
- package/src/schemas/v3/overlays/extensions/pc.json +37 -0
- package/src/schemas/v3/overlays/extensions/ph.json +194 -0
- package/src/schemas/v3/overlays/extensions/rw.json +68 -0
- package/src/schemas/v3/overlays/extensions/sb.json +4 -2
- package/src/schemas/v3/overlays/extensions/sc.json +129 -0
- package/src/schemas/v3/overlays/extensions/sd.json +63 -0
- package/src/schemas/v3/overlays/extensions/sf.json +4 -2
- package/src/schemas/v3/overlays/extensions/sl.json +4 -2
- package/src/schemas/v3/overlays/extensions/tf.json +6 -3
- package/src/schemas/v3/overlays/extensions/tr.json +73 -0
- package/src/schemas/v3/overlays/extensions/wg.json +350 -0
- package/src/schemas/v3/overlays/fme1.json +16 -14
- package/src/schemas/v3/overlays/lpe1.json +60 -30
- package/src/schemas/v3/overlays/nts.json +68 -1
- package/src/schemas/v3/overlays/nts2.json +68 -4
- package/src/schemas/v3/overlays/ntsl.json +68 -1
- package/src/schemas/v3/overlays/ntsl2.json +68 -4
- package/src/schemas/v3/overlays/piq.json +38 -1
- package/src/schemas/v3/overlays/rds.json +118 -6
- package/src/schemas/v3/overlays/sef25.json +1067 -0
- package/src/schemas/v3/overlays/ta6.json +46 -16
- package/src/schemas/v3/overlays/ta6ed6.json +6498 -0
- package/src/schemas/v3/overlays/ta7.json +70 -6
- package/src/schemas/v3/overlays/ta7ed5.json +1539 -0
- package/src/schemas/v3/pdtf-transaction.json +4361 -676
- package/src/schemas/v3/skeleton.json +505 -36
- package/src/tests/v3/buyerCircumstances.test.js +543 -0
- package/src/tests/v3/extensionOverlays.test.js +911 -0
- package/src/tests/v3/offers.test.js +37 -40
- package/src/tests/v3/patternProperties.test.js +149 -30
- package/src/tests/v3/ta6ed6.test.js +2317 -0
- package/src/tests/v3/ta7ed5.test.js +567 -0
- package/src/tests/v3/transactionSchema.test.js +31 -0
- package/src/utils/extractExtensionOverlays.js +216 -31
- package/src/utils/extractOverlay.js +88 -23
- package/src/utils/pathSkeleton.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
transactionId
|
|
2
|
-
externalIds
|
|
2
|
+
externalIds{*}
|
|
3
3
|
status
|
|
4
4
|
participants[
|
|
5
5
|
name
|
|
@@ -26,10 +26,11 @@
|
|
|
26
26
|
organisation
|
|
27
27
|
organisationReference
|
|
28
28
|
role
|
|
29
|
-
externalIds
|
|
29
|
+
externalIds{*}
|
|
30
30
|
participantStatus
|
|
31
31
|
verification
|
|
32
32
|
identity
|
|
33
|
+
status
|
|
33
34
|
result
|
|
34
35
|
reports[
|
|
35
36
|
reportName
|
|
@@ -37,6 +38,15 @@
|
|
|
37
38
|
details
|
|
38
39
|
]
|
|
39
40
|
antiMoneyLaundering
|
|
41
|
+
status
|
|
42
|
+
result
|
|
43
|
+
reports[
|
|
44
|
+
reportName
|
|
45
|
+
result
|
|
46
|
+
details
|
|
47
|
+
]
|
|
48
|
+
sourceOfFunds
|
|
49
|
+
status
|
|
40
50
|
result
|
|
41
51
|
reports[
|
|
42
52
|
reportName
|
|
@@ -48,6 +58,10 @@
|
|
|
48
58
|
capacity
|
|
49
59
|
sellersCapacityDetails
|
|
50
60
|
attachments
|
|
61
|
+
companyName
|
|
62
|
+
companyNumber
|
|
63
|
+
countryOfIncorporation
|
|
64
|
+
dateBecameOwnerOrAuthority
|
|
51
65
|
]
|
|
52
66
|
propertyPack
|
|
53
67
|
address
|
|
@@ -198,6 +212,8 @@
|
|
|
198
212
|
ownership
|
|
199
213
|
numberOfSellers
|
|
200
214
|
numberOfNonUkResidentSellers
|
|
215
|
+
outstandingMortgage
|
|
216
|
+
existingLender
|
|
201
217
|
hasHelpToBuyEquityLoan
|
|
202
218
|
isFirstRegistration
|
|
203
219
|
isLimitedCompanySale
|
|
@@ -209,6 +225,9 @@
|
|
|
209
225
|
yesNo
|
|
210
226
|
details
|
|
211
227
|
amount
|
|
228
|
+
titleRestrictions
|
|
229
|
+
yesNo
|
|
230
|
+
details
|
|
212
231
|
wholeFreeholdForSale
|
|
213
232
|
yesNo
|
|
214
233
|
details
|
|
@@ -299,6 +318,17 @@
|
|
|
299
318
|
isApplicableParty
|
|
300
319
|
feeIncludingVAT
|
|
301
320
|
noticeViaEmail
|
|
321
|
+
contact
|
|
322
|
+
nameOrOrganisation
|
|
323
|
+
address
|
|
324
|
+
line1
|
|
325
|
+
line2
|
|
326
|
+
line3
|
|
327
|
+
town
|
|
328
|
+
postcode
|
|
329
|
+
telephone
|
|
330
|
+
emailAddress
|
|
331
|
+
capacity
|
|
302
332
|
otherDetailsRequired
|
|
303
333
|
areOtherDetailsRequired
|
|
304
334
|
details
|
|
@@ -425,6 +455,7 @@
|
|
|
425
455
|
leaseholdInformation
|
|
426
456
|
typeOfLeasehold
|
|
427
457
|
leaseholdType
|
|
458
|
+
otherLeaseholdType
|
|
428
459
|
sharedOwnership
|
|
429
460
|
isSharedOwnership
|
|
430
461
|
sharedOwnershipPercentage
|
|
@@ -486,6 +517,39 @@
|
|
|
486
517
|
accountNumber
|
|
487
518
|
reference
|
|
488
519
|
feeType
|
|
520
|
+
rightToManageCompany
|
|
521
|
+
contact
|
|
522
|
+
nameOrOrganisation
|
|
523
|
+
address
|
|
524
|
+
line1
|
|
525
|
+
line2
|
|
526
|
+
line3
|
|
527
|
+
town
|
|
528
|
+
postcode
|
|
529
|
+
emailAddress
|
|
530
|
+
telephone
|
|
531
|
+
freeholder
|
|
532
|
+
contact
|
|
533
|
+
nameOrOrganisation
|
|
534
|
+
address
|
|
535
|
+
line1
|
|
536
|
+
line2
|
|
537
|
+
line3
|
|
538
|
+
town
|
|
539
|
+
postcode
|
|
540
|
+
emailAddress
|
|
541
|
+
telephone
|
|
542
|
+
headLeaseHolder
|
|
543
|
+
contact
|
|
544
|
+
nameOrOrganisation
|
|
545
|
+
address
|
|
546
|
+
line1
|
|
547
|
+
line2
|
|
548
|
+
line3
|
|
549
|
+
town
|
|
550
|
+
postcode
|
|
551
|
+
emailAddress
|
|
552
|
+
telephone
|
|
489
553
|
managingAgent
|
|
490
554
|
contact
|
|
491
555
|
nameOrOrganisation
|
|
@@ -551,6 +615,17 @@
|
|
|
551
615
|
isApplicableParty
|
|
552
616
|
feeIncludingVAT
|
|
553
617
|
noticeViaEmail
|
|
618
|
+
contact
|
|
619
|
+
nameOrOrganisation
|
|
620
|
+
address
|
|
621
|
+
line1
|
|
622
|
+
line2
|
|
623
|
+
line3
|
|
624
|
+
town
|
|
625
|
+
postcode
|
|
626
|
+
telephone
|
|
627
|
+
emailAddress
|
|
628
|
+
capacity
|
|
554
629
|
noticeOfTransferAndCharge
|
|
555
630
|
rentchargeOwner
|
|
556
631
|
isApplicableParty
|
|
@@ -572,12 +647,27 @@
|
|
|
572
647
|
isApplicableParty
|
|
573
648
|
feeIncludingVAT
|
|
574
649
|
noticeViaEmail
|
|
650
|
+
contact
|
|
651
|
+
nameOrOrganisation
|
|
652
|
+
address
|
|
653
|
+
line1
|
|
654
|
+
line2
|
|
655
|
+
line3
|
|
656
|
+
town
|
|
657
|
+
postcode
|
|
658
|
+
telephone
|
|
659
|
+
emailAddress
|
|
660
|
+
capacity
|
|
575
661
|
otherDetailsRequired
|
|
576
662
|
areOtherDetailsRequired
|
|
577
663
|
details
|
|
578
664
|
collectsGroundRent
|
|
665
|
+
collector
|
|
666
|
+
otherCollector
|
|
579
667
|
collectsServiceCharges
|
|
580
668
|
collectsbuildingInsurancePremiums
|
|
669
|
+
collector
|
|
670
|
+
otherCollector
|
|
581
671
|
dealsWithDayToDayMaintenanceOfManagedArea
|
|
582
672
|
organisesBuildingInsurance
|
|
583
673
|
dealsWithDayToDayMaintenanceOfBuilding
|
|
@@ -597,6 +687,10 @@
|
|
|
597
687
|
isSellerAwareOfChanges
|
|
598
688
|
details
|
|
599
689
|
attachments
|
|
690
|
+
landlordConsents
|
|
691
|
+
isSellerAwareOfLandlordConsents
|
|
692
|
+
details
|
|
693
|
+
attachments
|
|
600
694
|
transferAndRegistration
|
|
601
695
|
deedOfCovenantRequired
|
|
602
696
|
yesNoNotKnown
|
|
@@ -616,6 +710,7 @@
|
|
|
616
710
|
isGroundRentPayable
|
|
617
711
|
annualGroundRent
|
|
618
712
|
groundRentFrequency
|
|
713
|
+
mostRecentGroundRentDemandStatus
|
|
619
714
|
rentSubjectToIncrease
|
|
620
715
|
yesNo
|
|
621
716
|
rentReviewFrequency
|
|
@@ -634,11 +729,16 @@
|
|
|
634
729
|
buildingManager
|
|
635
730
|
buildingManagerType
|
|
636
731
|
details
|
|
637
|
-
hasTenantCompanyDissolved
|
|
638
732
|
isManagingAgentEmployed
|
|
733
|
+
sellerOwnership
|
|
734
|
+
yesNo
|
|
735
|
+
attachments
|
|
736
|
+
hasTenantCompanyDissolved
|
|
737
|
+
hasTenantCompanyDissolvedDetails
|
|
639
738
|
serviceCharge
|
|
640
739
|
sellerContributesToServiceCharge
|
|
641
740
|
annualServiceCharge
|
|
741
|
+
mostRecentServiceChargeDemandStatus
|
|
642
742
|
largeAdditionalExpense
|
|
643
743
|
yesNo
|
|
644
744
|
details
|
|
@@ -712,6 +812,7 @@
|
|
|
712
812
|
premiumsPaidUpToDate
|
|
713
813
|
yesNo
|
|
714
814
|
details
|
|
815
|
+
mostRecentBuildingsInsuranceDemandStatus
|
|
715
816
|
lastDemandPeriod
|
|
716
817
|
from
|
|
717
818
|
to
|
|
@@ -729,6 +830,9 @@
|
|
|
729
830
|
riskAssessments
|
|
730
831
|
assessmentsCarriedOut
|
|
731
832
|
urgentWorksRecommended
|
|
833
|
+
urgentWorksCarriedOut
|
|
834
|
+
outstandingEnforcementAction
|
|
835
|
+
dateRemedialActionRequired
|
|
732
836
|
standardTermsAvailable
|
|
733
837
|
yesNo
|
|
734
838
|
details
|
|
@@ -835,6 +939,9 @@
|
|
|
835
939
|
companyAccounts
|
|
836
940
|
managementCompanyAGMMinutes
|
|
837
941
|
enforcementNotices
|
|
942
|
+
additionalInformation
|
|
943
|
+
details
|
|
944
|
+
attachments
|
|
838
945
|
confirmationOfAccuracy
|
|
839
946
|
confirmation
|
|
840
947
|
capacity
|
|
@@ -846,12 +953,20 @@
|
|
|
846
953
|
yesNo
|
|
847
954
|
controlledParking
|
|
848
955
|
yesNo
|
|
849
|
-
|
|
956
|
+
costOfPermit
|
|
957
|
+
costOfPermitFrequency
|
|
850
958
|
vehicleTypeRestriction
|
|
851
959
|
yesNo
|
|
852
960
|
details
|
|
961
|
+
droppedKerbAccess
|
|
962
|
+
yesNo
|
|
853
963
|
electricVehicleChargingPoint
|
|
854
964
|
yesNo
|
|
965
|
+
chargerDetails
|
|
966
|
+
chargerDetailsAttachments
|
|
967
|
+
cableCrossesPavement
|
|
968
|
+
yesNo
|
|
969
|
+
details
|
|
855
970
|
locatedInUlez
|
|
856
971
|
yesNo
|
|
857
972
|
listingAndConservation
|
|
@@ -867,6 +982,7 @@
|
|
|
867
982
|
yesNo
|
|
868
983
|
workCarriedOut
|
|
869
984
|
yesNo
|
|
985
|
+
details
|
|
870
986
|
consentsObtained
|
|
871
987
|
attachments
|
|
872
988
|
typeOfConstruction
|
|
@@ -1056,6 +1172,10 @@
|
|
|
1056
1172
|
yesNo
|
|
1057
1173
|
attachments
|
|
1058
1174
|
details
|
|
1175
|
+
nonResidentialPurposes
|
|
1176
|
+
yesNo
|
|
1177
|
+
details
|
|
1178
|
+
attachments
|
|
1059
1179
|
windowReplacementsSince2002
|
|
1060
1180
|
yesNo
|
|
1061
1181
|
details
|
|
@@ -1076,6 +1196,25 @@
|
|
|
1076
1196
|
yesNo
|
|
1077
1197
|
attachments
|
|
1078
1198
|
details
|
|
1199
|
+
workCompleted
|
|
1200
|
+
yesNo
|
|
1201
|
+
details
|
|
1202
|
+
documents
|
|
1203
|
+
extension
|
|
1204
|
+
yesNo
|
|
1205
|
+
details
|
|
1206
|
+
workCompleted
|
|
1207
|
+
yesNo
|
|
1208
|
+
details
|
|
1209
|
+
documents
|
|
1210
|
+
planningPermission
|
|
1211
|
+
yesNo
|
|
1212
|
+
attachments
|
|
1213
|
+
details
|
|
1214
|
+
buildingRegApproval
|
|
1215
|
+
yesNo
|
|
1216
|
+
attachments
|
|
1217
|
+
details
|
|
1079
1218
|
hasAddedConservatory
|
|
1080
1219
|
yesNo
|
|
1081
1220
|
details
|
|
@@ -1096,6 +1235,100 @@
|
|
|
1096
1235
|
yesNo
|
|
1097
1236
|
attachments
|
|
1098
1237
|
details
|
|
1238
|
+
workCompleted
|
|
1239
|
+
yesNo
|
|
1240
|
+
details
|
|
1241
|
+
documents
|
|
1242
|
+
loftConversion
|
|
1243
|
+
yesNo
|
|
1244
|
+
details
|
|
1245
|
+
workCompleted
|
|
1246
|
+
yesNo
|
|
1247
|
+
details
|
|
1248
|
+
documents
|
|
1249
|
+
planningPermission
|
|
1250
|
+
yesNo
|
|
1251
|
+
attachments
|
|
1252
|
+
details
|
|
1253
|
+
buildingRegApproval
|
|
1254
|
+
yesNo
|
|
1255
|
+
attachments
|
|
1256
|
+
details
|
|
1257
|
+
garageConversion
|
|
1258
|
+
yesNo
|
|
1259
|
+
details
|
|
1260
|
+
workCompleted
|
|
1261
|
+
yesNo
|
|
1262
|
+
details
|
|
1263
|
+
documents
|
|
1264
|
+
planningPermission
|
|
1265
|
+
yesNo
|
|
1266
|
+
attachments
|
|
1267
|
+
details
|
|
1268
|
+
buildingRegApproval
|
|
1269
|
+
yesNo
|
|
1270
|
+
attachments
|
|
1271
|
+
details
|
|
1272
|
+
removalOfInternalWalls
|
|
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
|
+
removalOfChimneyBreast
|
|
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
|
+
insulation
|
|
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
|
+
otherBuildingWorksOrChangesToTheProperty
|
|
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
|
|
1099
1332
|
worksUnfinished
|
|
1100
1333
|
yesNo
|
|
1101
1334
|
details
|
|
@@ -1149,6 +1382,9 @@
|
|
|
1149
1382
|
details
|
|
1150
1383
|
attachments
|
|
1151
1384
|
japaneseKnotweed
|
|
1385
|
+
knotweedSurveyCarriedOut
|
|
1386
|
+
yesNo
|
|
1387
|
+
attachments
|
|
1152
1388
|
yesNo
|
|
1153
1389
|
managementPlanInPlace
|
|
1154
1390
|
attachments
|
|
@@ -1160,6 +1396,18 @@
|
|
|
1160
1396
|
yesNo
|
|
1161
1397
|
details
|
|
1162
1398
|
attachments
|
|
1399
|
+
wellsDitchesShaft
|
|
1400
|
+
yesNo
|
|
1401
|
+
details
|
|
1402
|
+
damagedOrExposedElectrics
|
|
1403
|
+
yesNo
|
|
1404
|
+
details
|
|
1405
|
+
damageToFlooringOrStaircases
|
|
1406
|
+
yesNo
|
|
1407
|
+
details
|
|
1408
|
+
knownAreasInPoorCondition
|
|
1409
|
+
yesNo
|
|
1410
|
+
details
|
|
1163
1411
|
fixturesAndFittings
|
|
1164
1412
|
itemsToRemove
|
|
1165
1413
|
yesNo
|
|
@@ -1626,11 +1874,15 @@
|
|
|
1626
1874
|
solarPanels
|
|
1627
1875
|
yesNo
|
|
1628
1876
|
supplier
|
|
1877
|
+
hotWaterOnly
|
|
1629
1878
|
yearInstalled
|
|
1630
1879
|
panelsOwnedOutright
|
|
1631
1880
|
yesNo
|
|
1632
1881
|
details
|
|
1633
1882
|
attachments
|
|
1883
|
+
associatedCost
|
|
1884
|
+
frequency
|
|
1885
|
+
amount
|
|
1634
1886
|
panelProviderLease
|
|
1635
1887
|
yesNo
|
|
1636
1888
|
details
|
|
@@ -1639,11 +1891,23 @@
|
|
|
1639
1891
|
inGoodWorkingOrder
|
|
1640
1892
|
yesNo
|
|
1641
1893
|
details
|
|
1642
|
-
isConnectedToNationalGrid
|
|
1643
1894
|
photovoltaicMeterPanelLocation
|
|
1644
1895
|
attachments
|
|
1645
|
-
|
|
1896
|
+
maintenanceAgreement
|
|
1897
|
+
yesNo
|
|
1898
|
+
attachments
|
|
1899
|
+
photovoltaicBatteries
|
|
1900
|
+
yesNo
|
|
1646
1901
|
attachments
|
|
1902
|
+
details
|
|
1903
|
+
nationalGrid
|
|
1904
|
+
yesNo
|
|
1905
|
+
fitOrSegInPlace
|
|
1906
|
+
yesNo
|
|
1907
|
+
fitSegAgreementCopy
|
|
1908
|
+
attachments
|
|
1909
|
+
fitSegAssignmentProcedure
|
|
1910
|
+
installationCertificates
|
|
1647
1911
|
dateToBeConnected
|
|
1648
1912
|
heatPump
|
|
1649
1913
|
yesNo
|
|
@@ -1651,6 +1915,8 @@
|
|
|
1651
1915
|
supplier
|
|
1652
1916
|
dateInstalled
|
|
1653
1917
|
attachments
|
|
1918
|
+
makeModel
|
|
1919
|
+
serviceProviderName
|
|
1654
1920
|
dateToBeConnected
|
|
1655
1921
|
otherSources
|
|
1656
1922
|
yesNo
|
|
@@ -1665,6 +1931,9 @@
|
|
|
1665
1931
|
mainsWater
|
|
1666
1932
|
yesNo
|
|
1667
1933
|
details
|
|
1934
|
+
associatedCost
|
|
1935
|
+
frequency
|
|
1936
|
+
amount
|
|
1668
1937
|
supplier
|
|
1669
1938
|
stopcock
|
|
1670
1939
|
location
|
|
@@ -1708,13 +1977,22 @@
|
|
|
1708
1977
|
attachments
|
|
1709
1978
|
plantDrainsIntoWaterway
|
|
1710
1979
|
yesNo
|
|
1980
|
+
hasInfiltrationSystem
|
|
1981
|
+
yesNo
|
|
1711
1982
|
dischargeCompliesWithGBR
|
|
1983
|
+
dateDischargeCommenced
|
|
1984
|
+
dateInstalled
|
|
1712
1985
|
dateReplaced
|
|
1713
1986
|
dateLastEmptied
|
|
1714
|
-
|
|
1987
|
+
supplier
|
|
1988
|
+
makeModel
|
|
1989
|
+
serviceProviderName
|
|
1715
1990
|
dateLastServiced
|
|
1716
1991
|
attachments
|
|
1717
1992
|
details
|
|
1993
|
+
associatedCost
|
|
1994
|
+
frequency
|
|
1995
|
+
amount
|
|
1718
1996
|
surfaceDrainageCharge
|
|
1719
1997
|
yesNo
|
|
1720
1998
|
details
|
|
@@ -1765,6 +2043,10 @@
|
|
|
1765
2043
|
otherCentralHeatingFuelType
|
|
1766
2044
|
centralHeatingInstalled
|
|
1767
2045
|
boilerInstallationCertificate
|
|
2046
|
+
yesNo
|
|
2047
|
+
boilerInstallationDate
|
|
2048
|
+
attachments
|
|
2049
|
+
replacementOtherThanBoiler
|
|
1768
2050
|
yesNo
|
|
1769
2051
|
attachments
|
|
1770
2052
|
heatingLastServicedDate
|
|
@@ -1774,6 +2056,7 @@
|
|
|
1774
2056
|
details
|
|
1775
2057
|
details
|
|
1776
2058
|
otherHeatingFeatures[]
|
|
2059
|
+
multipleHeatingSystems
|
|
1777
2060
|
connectivity
|
|
1778
2061
|
telephone
|
|
1779
2062
|
yesNo
|
|
@@ -1794,6 +2077,7 @@
|
|
|
1794
2077
|
maxUfbbPredictedUp
|
|
1795
2078
|
maxPredictedDown
|
|
1796
2079
|
maxPredictedUp
|
|
2080
|
+
providerName
|
|
1797
2081
|
mobilePhone
|
|
1798
2082
|
knownSignalIssues
|
|
1799
2083
|
yesNo
|
|
@@ -1831,6 +2115,7 @@
|
|
|
1831
2115
|
voDataOutdoorNo4g
|
|
1832
2116
|
voDataIndoor
|
|
1833
2117
|
voDataIndoorNo4g
|
|
2118
|
+
otherServices
|
|
1834
2119
|
insurance
|
|
1835
2120
|
difficultiesObtainingInsurance
|
|
1836
2121
|
abnormalRiseInPremiums
|
|
@@ -1848,6 +2133,7 @@
|
|
|
1848
2133
|
isInsured
|
|
1849
2134
|
details
|
|
1850
2135
|
landlordInsuresIfFlat
|
|
2136
|
+
whoInsures
|
|
1851
2137
|
insuranceClaims
|
|
1852
2138
|
yesNo
|
|
1853
2139
|
details
|
|
@@ -1855,9 +2141,15 @@
|
|
|
1855
2141
|
sharedContributions
|
|
1856
2142
|
yesNo
|
|
1857
2143
|
details
|
|
2144
|
+
disagreementOrComplaint
|
|
2145
|
+
yesNo
|
|
2146
|
+
details
|
|
1858
2147
|
neighbouringLandRights
|
|
1859
2148
|
yesNo
|
|
1860
2149
|
details
|
|
2150
|
+
disagreementOrComplaint
|
|
2151
|
+
yesNo
|
|
2152
|
+
details
|
|
1861
2153
|
attachments
|
|
1862
2154
|
accessRestrictionAttempts
|
|
1863
2155
|
yesNo
|
|
@@ -1867,6 +2159,9 @@
|
|
|
1867
2159
|
yesNo
|
|
1868
2160
|
details
|
|
1869
2161
|
attachments
|
|
2162
|
+
privateRightOfWay
|
|
2163
|
+
yesNo
|
|
2164
|
+
details
|
|
1870
2165
|
rightsOfLight
|
|
1871
2166
|
yesNo
|
|
1872
2167
|
details
|
|
@@ -1888,6 +2183,15 @@
|
|
|
1888
2183
|
otherRights
|
|
1889
2184
|
yesNo
|
|
1890
2185
|
details
|
|
2186
|
+
disagreementOrComplaint
|
|
2187
|
+
yesNo
|
|
2188
|
+
details
|
|
2189
|
+
askedOthersToContribute
|
|
2190
|
+
yesNo
|
|
2191
|
+
details
|
|
2192
|
+
disagreementOrComplaint
|
|
2193
|
+
yesNo
|
|
2194
|
+
details
|
|
1891
2195
|
environmentalIssues
|
|
1892
2196
|
flooding
|
|
1893
2197
|
floodRiskReport
|
|
@@ -1916,6 +2220,9 @@
|
|
|
1916
2220
|
floodDefences
|
|
1917
2221
|
hasFloodDefences
|
|
1918
2222
|
details
|
|
2223
|
+
stormFireFloodDamage
|
|
2224
|
+
yesNo
|
|
2225
|
+
details
|
|
1919
2226
|
radon
|
|
1920
2227
|
radonRisk
|
|
1921
2228
|
riskIndicator
|
|
@@ -2127,6 +2434,14 @@
|
|
|
2127
2434
|
details
|
|
2128
2435
|
attachments
|
|
2129
2436
|
additionalInformation
|
|
2437
|
+
consents
|
|
2438
|
+
attachments
|
|
2439
|
+
consentsAttached
|
|
2440
|
+
consentsToFollow
|
|
2441
|
+
consentsNotAvailable
|
|
2442
|
+
furtherInformation
|
|
2443
|
+
details
|
|
2444
|
+
attachments
|
|
2130
2445
|
restrictionsOnUseNotCompliedWith
|
|
2131
2446
|
yesNo
|
|
2132
2447
|
details
|
|
@@ -2254,6 +2569,9 @@
|
|
|
2254
2569
|
subsidenceWork
|
|
2255
2570
|
yesNo
|
|
2256
2571
|
attachments
|
|
2572
|
+
insulation
|
|
2573
|
+
yesNo
|
|
2574
|
+
attachments
|
|
2257
2575
|
solarPanels
|
|
2258
2576
|
yesNo
|
|
2259
2577
|
attachments
|
|
@@ -2265,6 +2583,9 @@
|
|
|
2265
2583
|
yesNo
|
|
2266
2584
|
details
|
|
2267
2585
|
attachments
|
|
2586
|
+
breachOfTermsOrConditions
|
|
2587
|
+
yesNo
|
|
2588
|
+
details
|
|
2268
2589
|
titleDefectInsurance
|
|
2269
2590
|
yesNo
|
|
2270
2591
|
details
|
|
@@ -2320,7 +2641,7 @@
|
|
|
2320
2641
|
sellerSignatures[
|
|
2321
2642
|
name
|
|
2322
2643
|
signedOn
|
|
2323
|
-
externalIds
|
|
2644
|
+
externalIds{*}
|
|
2324
2645
|
]
|
|
2325
2646
|
localSearches
|
|
2326
2647
|
localLandCharges[
|
|
@@ -3284,8 +3605,9 @@
|
|
|
3284
3605
|
fileName
|
|
3285
3606
|
mimeType
|
|
3286
3607
|
documentType
|
|
3287
|
-
externalIds
|
|
3608
|
+
externalIds{*}
|
|
3288
3609
|
isDeleted
|
|
3610
|
+
summary
|
|
3289
3611
|
]
|
|
3290
3612
|
surveys[
|
|
3291
3613
|
outside
|
|
@@ -4032,7 +4354,7 @@
|
|
|
4032
4354
|
template
|
|
4033
4355
|
name
|
|
4034
4356
|
url
|
|
4035
|
-
externalIds
|
|
4357
|
+
externalIds{*}
|
|
4036
4358
|
requiredSignatories[
|
|
4037
4359
|
role
|
|
4038
4360
|
requiresAll
|
|
@@ -4041,13 +4363,13 @@
|
|
|
4041
4363
|
signatures[
|
|
4042
4364
|
name
|
|
4043
4365
|
signedOn
|
|
4044
|
-
externalIds
|
|
4366
|
+
externalIds{*}
|
|
4045
4367
|
]
|
|
4046
4368
|
]
|
|
4047
4369
|
chain
|
|
4048
4370
|
onwardPurchase[
|
|
4049
4371
|
transactionId
|
|
4050
|
-
externalIds
|
|
4372
|
+
externalIds{*}
|
|
4051
4373
|
address
|
|
4052
4374
|
buildingNumber
|
|
4053
4375
|
buildingName
|
|
@@ -4092,7 +4414,36 @@
|
|
|
4092
4414
|
inclusions[]
|
|
4093
4415
|
exclusions[]
|
|
4094
4416
|
conditions[]
|
|
4095
|
-
externalIds
|
|
4417
|
+
externalIds{*}
|
|
4418
|
+
buyerCircumstances
|
|
4419
|
+
intendedUse
|
|
4420
|
+
firstTimeBuyer
|
|
4421
|
+
rightToBuy
|
|
4422
|
+
ltdCompanyPurchase
|
|
4423
|
+
numberOfOwners
|
|
4424
|
+
numberOfExpats
|
|
4425
|
+
giftedEquity
|
|
4426
|
+
numberOfGiftedDeposits
|
|
4427
|
+
requiresMortgage
|
|
4428
|
+
helpToBuyEquityLoan
|
|
4429
|
+
armedForcesHelpToBuy
|
|
4430
|
+
numberOfHelpToBuyIsas
|
|
4431
|
+
bridgingFinanceRepresentation
|
|
4432
|
+
depositAmount
|
|
4433
|
+
loanToValue
|
|
4434
|
+
numberOfBorrowers
|
|
4435
|
+
jointProprietorSoleMortgagor
|
|
4436
|
+
soleProprietorJointMortgagor
|
|
4437
|
+
deedOfPostponement
|
|
4438
|
+
separateRepresentation
|
|
4439
|
+
oldestBorrowerAge
|
|
4440
|
+
mortgageTerm
|
|
4441
|
+
adverseCredit
|
|
4442
|
+
employmentType
|
|
4443
|
+
existingMortgagedProperties
|
|
4444
|
+
annualIncome
|
|
4445
|
+
residencyStatus
|
|
4446
|
+
nominatedLender
|
|
4096
4447
|
enquiries{*}
|
|
4097
4448
|
subject
|
|
4098
4449
|
status
|
|
@@ -4101,5 +4452,5 @@
|
|
|
4101
4452
|
originatorRole
|
|
4102
4453
|
destinationRole
|
|
4103
4454
|
messageText
|
|
4104
|
-
externalIds
|
|
4455
|
+
externalIds{*}
|
|
4105
4456
|
resolutionCondition
|