@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
@@ -405,6 +405,7 @@
405
405
  "piqRef": "B1.3.1",
406
406
  "ta6ed6Ref": "1.4",
407
407
  "title": "Capacity in which the Seller sells",
408
+ "ta6ed6Title": "What is your role in the sale?",
408
409
  "type": "object",
409
410
  "baspi4Required": ["capacity"],
410
411
  "baspi5Required": ["capacity"],
@@ -527,6 +528,7 @@
527
528
  "dateBecameOwnerOrAuthority": {
528
529
  "ta6ed6Ref": "1.5",
529
530
  "title": "Date the seller became owner or was authorised to sell",
531
+ "ta6ed6Title": "When did you become the owner of, or get authority to sell, the property? (DD/MM/YYYY)",
530
532
  "type": "string",
531
533
  "format": "date"
532
534
  }
@@ -748,6 +750,8 @@
748
750
  "rdsRef": "Property/Address/xal:AddressDetails",
749
751
  "piqRef": "A1.1",
750
752
  "title": "Property Address",
753
+ "ta7ed5Title": "Address of the property",
754
+ "ta6ed6Title": "Address of the property",
751
755
  "type": "object",
752
756
  "properties": {
753
757
  "buildingNumber": {
@@ -855,6 +859,8 @@
855
859
  "ta6ed6Ref": "1.2",
856
860
  "ta6ed6Description": "Unique Property Reference Number (digits)",
857
861
  "title": "Unique Property Reference Number",
862
+ "ta7ed5Title": "UPRN (if known)",
863
+ "ta6ed6Title": "UPRN (if known)",
858
864
  "type": "integer"
859
865
  },
860
866
  "location": {
@@ -4755,6 +4761,7 @@
4755
4761
  "lpe1Ref": "1",
4756
4762
  "nts2Ref": "A1.5.4",
4757
4763
  "title": "Contact Details",
4764
+ "ta7ed5Title": "Contact details",
4758
4765
  "type": "object",
4759
4766
  "lpe1Required": [
4760
4767
  "contacts",
@@ -4829,6 +4836,7 @@
4829
4836
  "ta7Ref": "4.1a.1",
4830
4837
  "ta7ed5Ref": "3.1.1.1",
4831
4838
  "title": "Name or organisation",
4839
+ "ta7ed5Title": "Name",
4832
4840
  "type": "string",
4833
4841
  "minLength": 1
4834
4842
  },
@@ -4905,6 +4913,7 @@
4905
4913
  "ta7Ref": "4.1a.8",
4906
4914
  "ta7ed5Ref": "3.1.1.3",
4907
4915
  "title": "Email address",
4916
+ "ta7ed5Title": "Email",
4908
4917
  "type": "string",
4909
4918
  "format": "email"
4910
4919
  }
@@ -5051,6 +5060,7 @@
5051
5060
  "ta7Ref": "4.1b",
5052
5061
  "ta7ed5Ref": "3.1.2",
5053
5062
  "title": "Management Company",
5063
+ "ta7ed5Title": "Management company",
5054
5064
  "type": "object",
5055
5065
  "properties": {
5056
5066
  "contact": {
@@ -5062,6 +5072,7 @@
5062
5072
  "ta7Ref": "4.1b.1",
5063
5073
  "ta7ed5Ref": "3.1.2.1",
5064
5074
  "title": "Name or organisation",
5075
+ "ta7ed5Title": "Name",
5065
5076
  "type": "string",
5066
5077
  "minLength": 1
5067
5078
  },
@@ -5116,6 +5127,7 @@
5116
5127
  "ta7Ref": "4.1b.8",
5117
5128
  "ta7ed5Ref": "3.1.2.3",
5118
5129
  "title": "Email address",
5130
+ "ta7ed5Title": "Email",
5119
5131
  "type": "string",
5120
5132
  "format": "email"
5121
5133
  }
@@ -5175,6 +5187,7 @@
5175
5187
  "nameOrOrganisation": {
5176
5188
  "ta7ed5Ref": "3.1.3.1",
5177
5189
  "title": "Name or organisation",
5190
+ "ta7ed5Title": "Name",
5178
5191
  "type": "string",
5179
5192
  "minLength": 1
5180
5193
  },
@@ -5212,6 +5225,7 @@
5212
5225
  "emailAddress": {
5213
5226
  "ta7ed5Ref": "3.1.3.3",
5214
5227
  "title": "Email address",
5228
+ "ta7ed5Title": "Email",
5215
5229
  "type": "string",
5216
5230
  "format": "email"
5217
5231
  },
@@ -5236,6 +5250,7 @@
5236
5250
  "nameOrOrganisation": {
5237
5251
  "ta7ed5Ref": "3.1.4.1",
5238
5252
  "title": "Name or organisation",
5253
+ "ta7ed5Title": "Name",
5239
5254
  "type": "string",
5240
5255
  "minLength": 1
5241
5256
  },
@@ -5273,6 +5288,7 @@
5273
5288
  "emailAddress": {
5274
5289
  "ta7ed5Ref": "3.1.4.3",
5275
5290
  "title": "Email address",
5291
+ "ta7ed5Title": "Email",
5276
5292
  "type": "string",
5277
5293
  "format": "email"
5278
5294
  },
@@ -5297,6 +5313,7 @@
5297
5313
  "nameOrOrganisation": {
5298
5314
  "ta7ed5Ref": "3.1.5.1",
5299
5315
  "title": "Name or organisation",
5316
+ "ta7ed5Title": "Name",
5300
5317
  "type": "string",
5301
5318
  "minLength": 1
5302
5319
  },
@@ -5334,6 +5351,7 @@
5334
5351
  "emailAddress": {
5335
5352
  "ta7ed5Ref": "3.1.5.3",
5336
5353
  "title": "Email address",
5354
+ "ta7ed5Title": "Email",
5337
5355
  "type": "string",
5338
5356
  "format": "email"
5339
5357
  },
@@ -5400,6 +5418,7 @@
5400
5418
  "ta7ed5Ref": "4.1.2.1",
5401
5419
  "nts2Ref": "A1.5.6.1.1",
5402
5420
  "title": "Name or organisation",
5421
+ "ta7ed5Title": "Name",
5403
5422
  "type": "string",
5404
5423
  "minLength": 1
5405
5424
  },
@@ -5477,6 +5496,7 @@
5477
5496
  "ta7ed5Ref": "4.1.2.3",
5478
5497
  "nts2Ref": "A1.5.6.1.2",
5479
5498
  "title": "Email address",
5499
+ "ta7ed5Title": "Email",
5480
5500
  "type": "string",
5481
5501
  "format": "email"
5482
5502
  }
@@ -6305,6 +6325,7 @@
6305
6325
  "collectsGroundRent": {
6306
6326
  "ta7ed5Ref": "4.3",
6307
6327
  "title": "Who collects the Ground Rent?",
6328
+ "ta7ed5Title": "If ground rent is payable, is it collected by the managing agent?",
6308
6329
  "type": "object",
6309
6330
  "lpe1Required": ["collector"],
6310
6331
  "ta7ed5Required": ["collector"],
@@ -6382,6 +6403,7 @@
6382
6403
  "collectsbuildingInsurancePremiums": {
6383
6404
  "ta7ed5Ref": "4.2",
6384
6405
  "title": "Who collects the building insurance premiums?",
6406
+ "ta7ed5Title": "Does the managing agent arrange or collect charges for the insurance of the building?",
6385
6407
  "type": "object",
6386
6408
  "lpe1Required": ["collector"],
6387
6409
  "ta7ed5Required": ["collector"],
@@ -6607,6 +6629,7 @@
6607
6629
  "ta7Ref": "7.1",
6608
6630
  "ta7ed5Ref": "8.1",
6609
6631
  "title": "Is the seller aware of any changes in the terms of the lease or of the landlord giving any consents under the lease?",
6632
+ "ta7ed5Title": "Are you aware of any changes to the terms of the lease?",
6610
6633
  "type": "object",
6611
6634
  "lpe1Required": ["isSellerAwareOfChanges"],
6612
6635
  "ta7Required": ["isSellerAwareOfChanges"],
@@ -6640,7 +6663,7 @@
6640
6663
  "ta7Ref": "7.1.2",
6641
6664
  "ta7ed5Ref": "8.1.2",
6642
6665
  "title": "Please supply a copy or, if not in writing, please give details:",
6643
- "ta7ed5Title": "Please supply further details and any documents relating to the variation:",
6666
+ "ta7ed5Title": "Please supply further details and any documents relating to the variation",
6644
6667
  "type": "string",
6645
6668
  "minLength": 1
6646
6669
  },
@@ -6971,6 +6994,7 @@
6971
6994
  },
6972
6995
  "mostRecentGroundRentDemandStatus": {
6973
6996
  "title": "Please provide the most recent payment demands payable under the lease for ground rent",
6997
+ "ta7ed5Title": "Ground rent",
6974
6998
  "ta7ed5Ref": "2.2a",
6975
6999
  "type": "string",
6976
7000
  "enum": [
@@ -7317,6 +7341,7 @@
7317
7341
  "attachments": {
7318
7342
  "ta7ed5Ref": "4.4.2",
7319
7343
  "title": "If yes, supply evidence of your ownership or share certificate for membership of the organisation that is responsible for the management of the building.",
7344
+ "ta7ed5Title": "Supply evidence of your ownership or share certificate for membership of the organisation that is responsible for the management of the building.",
7320
7345
  "type": "string",
7321
7346
  "enum": [
7322
7347
  "Attached",
@@ -7403,6 +7428,7 @@
7403
7428
  "ntsRef": "A3.5.1",
7404
7429
  "nts2Ref": "A3.5.1",
7405
7430
  "title": "Does the seller contribute to the cost of maintaining the building (a service charge)?",
7431
+ "ta7ed5Title": "Do you contribute to the cost of maintaining the building?",
7406
7432
  "type": "string",
7407
7433
  "enum": ["Yes", "No"]
7408
7434
  }
@@ -7435,6 +7461,7 @@
7435
7461
  "mostRecentServiceChargeDemandStatus": {
7436
7462
  "ta7ed5Ref": "2.2b",
7437
7463
  "title": "Please provide the most recent payment demands payable under the lease for service charge",
7464
+ "ta7ed5Title": "Service charge",
7438
7465
  "type": "string",
7439
7466
  "enum": [
7440
7467
  "Attached",
@@ -7448,6 +7475,7 @@
7448
7475
  "ta7Ref": "5.5",
7449
7476
  "ta7ed5Ref": "5.4",
7450
7477
  "title": "Does the seller know of any expense (e.g. the cost of redecoration of outside or communal areas not usually incurred annually) likely to be shown in the service charge accounts within the next three years?",
7478
+ "ta7ed5Title": "Do you know of any expense (e.g. the cost of redecoration of outside or communal areas that is not usually incurred annually) that is likely to be shown in the service charge accounts within the next three years?",
7451
7479
  "type": "object",
7452
7480
  "properties": {
7453
7481
  "yesNo": {
@@ -7487,6 +7515,7 @@
7487
7515
  "ta7Ref": "5.5.2",
7488
7516
  "ta7ed5Ref": "5.4.2",
7489
7517
  "title": "Details",
7518
+ "ta7ed5Title": "Please give details",
7490
7519
  "type": "string"
7491
7520
  }
7492
7521
  },
@@ -7502,6 +7531,7 @@
7502
7531
  "ta7Ref": "5.6",
7503
7532
  "ta7ed5Ref": "5.6",
7504
7533
  "title": "Does the seller know of any problems in the last three years regarding the level of service charges or with the management?",
7534
+ "ta7ed5Title": "Do you know of any issues in the last three years regarding the level of service charges or with the management?",
7505
7535
  "type": "object",
7506
7536
  "properties": {
7507
7537
  "yesNo": {
@@ -7546,6 +7576,7 @@
7546
7576
  "ta7Ref": "5.7",
7547
7577
  "ta7ed5Ref": "5.5",
7548
7578
  "title": "Has the seller challenged the service charge or any expense in the last three years?",
7579
+ "ta7ed5Title": "Have you challenged the service charge or any expense in the last three years?",
7549
7580
  "type": "object",
7550
7581
  "properties": {
7551
7582
  "yesNo": {
@@ -7967,6 +7998,7 @@
7967
7998
  "ta7Ref": "5.2",
7968
7999
  "ta7ed5Ref": "5.1",
7969
8000
  "title": "The outside of the building (if known)",
8001
+ "ta7ed5Title": "In what year was the outside of the building last decorated?",
7970
8002
  "type": "object",
7971
8003
  "properties": {
7972
8004
  "year": {
@@ -7991,6 +8023,7 @@
7991
8023
  "ta7Ref": "5.3",
7992
8024
  "ta7ed5Ref": "5.2",
7993
8025
  "title": "Internally",
8026
+ "ta7ed5Title": "In what year were any internal communal parts last decorated?",
7994
8027
  "ta7Title": "The internal communal parts (if known)",
7995
8028
  "type": "object",
7996
8029
  "properties": {
@@ -8446,6 +8479,7 @@
8446
8479
  "mostRecentBuildingsInsuranceDemandStatus": {
8447
8480
  "ta7ed5Ref": "2.2c",
8448
8481
  "title": "Most recent buildings insurance payment demand",
8482
+ "ta7ed5Title": "Buildings insurance",
8449
8483
  "type": "string",
8450
8484
  "enum": [
8451
8485
  "Attached",
@@ -8862,6 +8896,7 @@
8862
8896
  "ta7Ref": "8",
8863
8897
  "ta7ed5Ref": "10",
8864
8898
  "title": "Disputes",
8899
+ "ta7ed5Title": "Complaints",
8865
8900
  "ta7Ttle": "Complaints",
8866
8901
  "type": "object",
8867
8902
  "lpe1Required": [
@@ -9086,6 +9121,7 @@
9086
9121
  "ta7Ref": "11",
9087
9122
  "ta7ed5Ref": "11",
9088
9123
  "title": "Building safety",
9124
+ "ta7ed5Title": "Building safety for blocks of flats",
9089
9125
  "type": "object",
9090
9126
  "ta7Required": [
9091
9127
  "isLeaseQualifying",
@@ -9114,8 +9150,8 @@
9114
9150
  "ta7Ref": "11.3",
9115
9151
  "ta7ed5Ref": "11.4",
9116
9152
  "title": "Has a Leaseholder Deed of Certificate been served on the Landlord in relation to the property or remedial works required to the property?",
9117
- "ta7Title": "Is there a Leaseholder Deed of Certificate for the property?",
9118
9153
  "ta7ed5Title": "Is there a leaseholder deed of certificate for the property?",
9154
+ "ta7Title": "Is there a Leaseholder Deed of Certificate for the property?",
9119
9155
  "type": "object",
9120
9156
  "properties": {
9121
9157
  "yesNoNotApplicable": {
@@ -9157,8 +9193,8 @@
9157
9193
  "ta7Ref": "11.3b",
9158
9194
  "ta7ed5Ref": "11.4.2",
9159
9195
  "title": "Leaseholder Deed of Certificate.",
9160
- "ta7Title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence",
9161
9196
  "ta7ed5Title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence.",
9197
+ "ta7Title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence",
9162
9198
  "type": "string",
9163
9199
  "enum": ["Attached", "To follow"]
9164
9200
  }
@@ -9192,8 +9228,8 @@
9192
9228
  "ta7Ref": "11.5",
9193
9229
  "ta7ed5Ref": "11.6",
9194
9230
  "title": "Has a Landlord's Certificate been served?",
9195
- "ta7Title": "Has the seller received a Landlord’s Certificate and the accompanying evidence?",
9196
9231
  "ta7ed5Title": "Have you received a landlord’s certificate and the accompanying evidence?",
9232
+ "ta7Title": "Has the seller received a Landlord’s Certificate and the accompanying evidence?",
9197
9233
  "type": "object",
9198
9234
  "lpe1Required": ["yesNoNotApplicable"],
9199
9235
  "ta7Required": ["yesNoNotApplicable"],
@@ -9230,8 +9266,8 @@
9230
9266
  "ta7Ref": "11.5.2",
9231
9267
  "ta7ed5Ref": "11.6.2",
9232
9268
  "title": "Landlord's Certificate.",
9233
- "ta7Title": "Please supply a copy and the accompanying evidence.",
9234
9269
  "ta7ed5Title": "Please supply a copy of the landlord’s certificate and the accompanying evidence.",
9270
+ "ta7Title": "Please supply a copy and the accompanying evidence.",
9235
9271
  "type": "string",
9236
9272
  "enum": ["Attached", "To follow"]
9237
9273
  }
@@ -9256,6 +9292,7 @@
9256
9292
  "ta7Ref": "9.1",
9257
9293
  "ta7ed5Ref": "9.1",
9258
9294
  "title": "Is the seller aware of any alterations having been made to the property since the lease was originally granted?",
9295
+ "ta7ed5Title": "Are you aware of any alterations having been made to the property since the lease was originally granted?",
9259
9296
  "type": "object",
9260
9297
  "properties": {
9261
9298
  "yesNo": {
@@ -9508,6 +9545,7 @@
9508
9545
  "ta7Ref": "10.4",
9509
9546
  "ta7ed5Ref": "7.3",
9510
9547
  "title": "Is the seller aware of any response to a notice disclosed in replies above?",
9548
+ "ta7ed5Title": "Are you aware of any response to a notice disclosed in replies to 7.1 and 7.2 above?",
9511
9549
  "type": "object",
9512
9550
  "properties": {
9513
9551
  "yesNo": {
@@ -10375,6 +10413,7 @@
10375
10413
  "piqRef": "A1.5",
10376
10414
  "type": "array",
10377
10415
  "title": "Parking arrangements",
10416
+ "ta6ed6Title": "What are the parking arrangements at the property?",
10378
10417
  "items": {
10379
10418
  "ntsRef": "B4.1.1",
10380
10419
  "nts2Ref": "B4.1.1",
@@ -10561,6 +10600,7 @@
10561
10600
  "baspi5Ref": "A1.6.1",
10562
10601
  "ta6ed6Ref": "10.3",
10563
10602
  "title": "Is there an electric vehicle charging point belonging to the property?",
10603
+ "ta6ed6Title": "Does the property have an electric vehicle (EV) charging point?",
10564
10604
  "type": "object",
10565
10605
  "properties": {
10566
10606
  "yesNo": {
@@ -10684,6 +10724,7 @@
10684
10724
  "ta6Ref": "4.7",
10685
10725
  "ta6ed6Ref": "5.7",
10686
10726
  "title": "Listing and Conservation",
10727
+ "ta6ed6Title": "Listed buildings and conservation area",
10687
10728
  "type": "object",
10688
10729
  "ntsRequired": [
10689
10730
  "isListed",
@@ -10725,7 +10766,6 @@
10725
10766
  "isConservationArea",
10726
10767
  "hasTreePreservationOrder"
10727
10768
  ],
10728
- "ta6ed6Title": "Listed buildings and conservation area",
10729
10769
  "properties": {
10730
10770
  "isListed": {
10731
10771
  "ntsRef": "C2.1.1",
@@ -10739,6 +10779,7 @@
10739
10779
  "ta6ed6Ref": "5.7",
10740
10780
  "piqRef": "A1.6.1",
10741
10781
  "title": "Is the property a listed building in England or Wales?",
10782
+ "ta6ed6Title": "Is the property (or any part of it) listed?",
10742
10783
  "type": "object",
10743
10784
  "properties": {
10744
10785
  "yesNo": {
@@ -10772,8 +10813,9 @@
10772
10813
  "ntslRequired": ["yesNo"],
10773
10814
  "ntsl2Required": ["yesNo"],
10774
10815
  "ta6Required": ["yesNo"],
10775
- "ta6ed6Required": ["yesNo"],
10776
- "ta6ed6Title": "Is the property (or any part of it) listed?",
10816
+ "ta6ed6Required": [
10817
+ "yesNo"
10818
+ ],
10777
10819
  "discriminator": {
10778
10820
  "propertyName": "yesNo"
10779
10821
  },
@@ -10832,6 +10874,7 @@
10832
10874
  "ta6ed6Ref": "5.8",
10833
10875
  "piqRef": "A1.6.2",
10834
10876
  "title": "Is the property in a designated conservation area?",
10877
+ "ta6ed6Title": "Is the property (or any part of it) in a conservation area?",
10835
10878
  "type": "object",
10836
10879
  "properties": {
10837
10880
  "yesNo": {
@@ -10860,8 +10903,9 @@
10860
10903
  "ntslRequired": ["yesNo"],
10861
10904
  "ntsl2Required": ["yesNo"],
10862
10905
  "ta6Required": ["yesNo"],
10863
- "ta6ed6Required": ["yesNo"],
10864
- "ta6ed6Title": "Is the property (or any part of it) in a conservation area?",
10906
+ "ta6ed6Required": [
10907
+ "yesNo"
10908
+ ],
10865
10909
  "discriminator": {
10866
10910
  "propertyName": "yesNo"
10867
10911
  },
@@ -11207,8 +11251,8 @@
11207
11251
  "ta7Ref": "11.1",
11208
11252
  "ta7ed5Ref": "11.2",
11209
11253
  "title": "Are you aware of any remediation required to the property due to building safety?",
11210
- "ta7Title": "Have any remediation works on the building been proposed or carried out?",
11211
11254
  "ta7ed5Title": "Have any remediation works on the building been proposed or carried out?",
11255
+ "ta7Title": "Have any remediation works on the building been proposed or carried out?",
11212
11256
  "description": "For example issues related to unsafe cladding, integrity of building materials used in construction (e.g. asbestos), risk of collapse (e.g. damaged roofs or structural failures), at-risk wooden decking for external structures (including balconies), lack of emergency lighting where required or insufficient fire/smoke alarm systems",
11213
11257
  "type": "object",
11214
11258
  "properties": {
@@ -11326,8 +11370,8 @@
11326
11370
  "ta7Ref": "11.1.3",
11327
11371
  "ta7ed5Ref": "11.2.2",
11328
11372
  "title": "Attachments",
11329
- "ta7Title": "Please attach details of the remediation works proposed and evidence of any carried out.",
11330
11373
  "ta7ed5Title": "Please provide details of the remediation works proposed and evidence of any carried out.",
11374
+ "ta7Title": "Please attach details of the remediation works proposed and evidence of any carried out.",
11331
11375
  "type": "string",
11332
11376
  "enum": ["Attached", "To follow"]
11333
11377
  }
@@ -11901,6 +11945,7 @@
11901
11945
  "piqRef": "A11.4",
11902
11946
  "rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
11903
11947
  "title": "Green Deal Loan",
11948
+ "ta6ed6Title": "Green Deal",
11904
11949
  "type": "object",
11905
11950
  "baspi4Required": ["hasGreenDealLoan"],
11906
11951
  "baspi5Required": ["hasGreenDealLoan"],
@@ -11913,6 +11958,7 @@
11913
11958
  "ta6ed6Ref": "8.5.1",
11914
11959
  "ta6Ref": "7.7.0",
11915
11960
  "title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
11961
+ "ta6ed6Title": "Have any installations in the property been financed under the Green Deal scheme?",
11916
11962
  "type": "object",
11917
11963
  "properties": {
11918
11964
  "yesNo": {
@@ -11952,6 +11998,7 @@
11952
11998
  "ta6ed6Ref": "8.5.1b",
11953
11999
  "ta6Ref": "7.7.2",
11954
12000
  "title": "Please provide details below including any outstanding payments for the renewable devices and any feed-in tariffs and a copy of your last electricity bill",
12001
+ "ta6ed6Title": "Give details of all installations and supply a copy of your last electricity bill",
11955
12002
  "type": "string",
11956
12003
  "minLength": 1
11957
12004
  },
@@ -12113,6 +12160,7 @@
12113
12160
  "ta6Ref": "2",
12114
12161
  "ta6ed6Ref": "3",
12115
12162
  "title": "Disputes and Complaints",
12163
+ "ta6ed6Title": "Disputes",
12116
12164
  "type": "object",
12117
12165
  "baspi4Required": [
12118
12166
  "hasDisputesAndComplaints",
@@ -12139,8 +12187,8 @@
12139
12187
  "ta6ed6Ref": "3.1",
12140
12188
  "piqRef": "A2.1",
12141
12189
  "title": "Have any disputes or complaints occurred, regarding this property, a property nearby, or their use?",
12142
- "ta6Title": "Have there been any disputes or complaints regarding this property or a property nearby?",
12143
12190
  "ta6ed6Title": "Are you aware of any disputes or complaints about the property or a property nearby?",
12191
+ "ta6Title": "Have there been any disputes or complaints regarding this property or a property nearby?",
12144
12192
  "description": "E.g boundary disagreement, noise, trespass etc",
12145
12193
  "ta6Description": "",
12146
12194
  "ta6ed6Description": "If yes, give details such as when this took place and who was involved:",
@@ -12189,6 +12237,7 @@
12189
12237
  "ta6ed6Ref": "3.1.2",
12190
12238
  "piqRef": "A2.1.1.2",
12191
12239
  "title": "Please give details",
12240
+ "ta6ed6Title": "Give details such as when this took place and who was involved",
12192
12241
  "type": "string",
12193
12242
  "minLength": 1
12194
12243
  }
@@ -12207,6 +12256,7 @@
12207
12256
  "ta6Ref": "2.2",
12208
12257
  "ta6ed6Ref": "3.2",
12209
12258
  "title": "Is the seller aware of anything which might lead to a dispute about the property or a property nearby?",
12259
+ "ta6ed6Title": "Are you aware of anything that might lead to a dispute about the property or a property nearby?",
12210
12260
  "type": "object",
12211
12261
  "properties": {
12212
12262
  "yesNo": {
@@ -12227,8 +12277,9 @@
12227
12277
  "baspi4Required": ["yesNo"],
12228
12278
  "baspi5Required": ["yesNo"],
12229
12279
  "ta6Required": ["yesNo"],
12230
- "ta6ed6Required": ["yesNo"],
12231
- "ta6ed6Title": "Are you aware of anything that might lead to a dispute about the property or a property nearby?",
12280
+ "ta6ed6Required": [
12281
+ "yesNo"
12282
+ ],
12232
12283
  "ta6ed6Description": "If yes, please give details:",
12233
12284
  "discriminator": {
12234
12285
  "propertyName": "yesNo"
@@ -12272,6 +12323,7 @@
12272
12323
  "ta6ed6Ref": "5",
12273
12324
  "sef25Ref": "A1",
12274
12325
  "title": "Alterations and Changes to the Property",
12326
+ "ta6ed6Title": "Alterations",
12275
12327
  "description": "Have any of the following changes been made to the whole or any part of the property (including the garden)?",
12276
12328
  "type": "object",
12277
12329
  "baspi4Required": [
@@ -13006,6 +13058,7 @@
13006
13058
  "details": {
13007
13059
  "ta6ed6Ref": "5.3.2",
13008
13060
  "title": "Please give details",
13061
+ "ta6ed6Title": "Give details and supply a copy of any relevant planning permission",
13009
13062
  "type": "string",
13010
13063
  "minLength": 1
13011
13064
  },
@@ -13028,6 +13081,7 @@
13028
13081
  "ta6ed6Ref": "5.1a",
13029
13082
  "piqRef": "A3.2",
13030
13083
  "title": "Since 1st April 2002 has replacement of any windows, roof windows, roof lights, glazed doors taken place?",
13084
+ "ta6ed6Title": "Replacement windows, roof windows, roof lights, glazed doors since 1 April 2002",
13031
13085
  "type": "object",
13032
13086
  "properties": {
13033
13087
  "yesNo": {
@@ -13616,6 +13670,7 @@
13616
13670
  "ta6ed6Ref": "5.1c",
13617
13671
  "piqRef": "A3.4",
13618
13672
  "title": "Has a conservatory been added?",
13673
+ "ta6ed6Title": "Conservatory",
13619
13674
  "type": "object",
13620
13675
  "properties": {
13621
13676
  "yesNo": {
@@ -15210,6 +15265,7 @@
15210
15265
  "ta6ed6Ref": "5.4",
15211
15266
  "piqRef": "A3.7",
15212
15267
  "title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions or work not having the necessary consents?",
15268
+ "ta6ed6Title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions, unfinished work or work that does not have all necessary consents?",
15213
15269
  "type": "object",
15214
15270
  "properties": {
15215
15271
  "yesNo": {
@@ -15298,6 +15354,7 @@
15298
15354
  "piqRef": "A3.8",
15299
15355
  "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
15300
15356
  "title": "Are you aware of any unresolved planning or building control issues?",
15357
+ "ta6ed6Title": "Are you aware of any planning or building control issues that need to be resolved?",
15301
15358
  "type": "object",
15302
15359
  "properties": {
15303
15360
  "yesNo": {
@@ -15391,6 +15448,7 @@
15391
15448
  "ntsl2Ref": "C4",
15392
15449
  "sef25Ref": "N1",
15393
15450
  "title": "Notices which Affect the Property",
15451
+ "ta6ed6Title": "Notices",
15394
15452
  "description": "Are you aware of, or have you received, any of the following notices?",
15395
15453
  "type": "object",
15396
15454
  "baspi4Required": [
@@ -15425,7 +15483,6 @@
15425
15483
  "neighbourDevelopment",
15426
15484
  "planningApplication"
15427
15485
  ],
15428
- "ta6ed6Title": "Notices",
15429
15486
  "properties": {
15430
15487
  "neighbourDevelopment": {
15431
15488
  "baspi4Ref": "A4.1",
@@ -15440,6 +15497,7 @@
15440
15497
  "piqRef": "A4.1",
15441
15498
  "sef25Ref": "N1.1",
15442
15499
  "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
15500
+ "ta6ed6Title": "Are you aware of any plans or proposals to develop property or land nearby?",
15443
15501
  "ta6Title": "Is the seller aware of any proposals to develop property or land nearby, or of any proposals to make alterations to buildings nearby?",
15444
15502
  "type": "object",
15445
15503
  "properties": {
@@ -15492,6 +15550,7 @@
15492
15550
  "ta6Ref": "3.2.2",
15493
15551
  "ta6ed6Ref": "4.2.2",
15494
15552
  "title": "Details",
15553
+ "ta6ed6Title": "Please give details",
15495
15554
  "type": "string",
15496
15555
  "minLength": 1
15497
15556
  },
@@ -15526,6 +15585,7 @@
15526
15585
  "ta6ed6Ref": "4.3",
15527
15586
  "piqRef": "A4.2",
15528
15587
  "title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
15588
+ "ta6ed6Title": "Are you aware of any proposals to make alterations to or change the use of buildings nearby?",
15529
15589
  "type": "object",
15530
15590
  "properties": {
15531
15591
  "yesNo": {
@@ -15577,6 +15637,7 @@
15577
15637
  "ta6Ref": "3.1.2",
15578
15638
  "ta6ed6Ref": "4.3.2",
15579
15639
  "title": "Details",
15640
+ "ta6ed6Title": "Please give details",
15580
15641
  "type": "string",
15581
15642
  "minLength": 1
15582
15643
  },
@@ -15786,6 +15847,7 @@
15786
15847
  "ta6Ref": "1.6",
15787
15848
  "ta6ed6Ref": "2.5",
15788
15849
  "title": "Notice under the Party Wall Act 1996 in respect of any shared or party boundaries?",
15850
+ "ta6ed6Title": "Are you aware of any notice being served or received under the Party Wall etc. Act 1996 in respect of any shared/party walls or boundaries?",
15789
15851
  "type": "object",
15790
15852
  "properties": {
15791
15853
  "yesNo": {
@@ -15829,6 +15891,7 @@
15829
15891
  "ta6Ref": "1.6.2",
15830
15892
  "ta6ed6Ref": "2.5.2",
15831
15893
  "title": "Details",
15894
+ "ta6ed6Title": "Supply a copy and give details of any works carried out or agreed",
15832
15895
  "type": "string",
15833
15896
  "minLength": 1
15834
15897
  },
@@ -15856,6 +15919,7 @@
15856
15919
  "ta6ed6Ref": "4.1",
15857
15920
  "piqRef": "A4.6",
15858
15921
  "title": "Any other type of notice?",
15922
+ "ta6ed6Title": "Are you aware of any notices, communications, negotiations or discussions which affect the property or a property nearby? For example, from or to a neighbour, council or government department.",
15859
15923
  "type": "object",
15860
15924
  "properties": {
15861
15925
  "yesNo": {
@@ -15895,6 +15959,7 @@
15895
15959
  "ta6Ref": "3.1.2",
15896
15960
  "ta6ed6Ref": "4.1.2",
15897
15961
  "title": "Details",
15962
+ "ta6ed6Title": "Please give details",
15898
15963
  "type": "string",
15899
15964
  "minLength": 1
15900
15965
  },
@@ -16101,6 +16166,7 @@
16101
16166
  "ta6Ref": "7.8",
16102
16167
  "piqRef": "A5.3",
16103
16168
  "title": "Japanese Knotweed",
16169
+ "ta6ed6Title": "Japanese knotweed",
16104
16170
  "type": "object",
16105
16171
  "properties": {
16106
16172
  "knotweedSurveyCarriedOut": {
@@ -16153,6 +16219,7 @@
16153
16219
  "piqRef": "A5.3.1",
16154
16220
  "type": "string",
16155
16221
  "title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
16222
+ "ta6ed6Title": "Is the property affected by Japanese knotweed?",
16156
16223
  "ta6Title": "Is the property affected by Japanese knotweed?",
16157
16224
  "enum": ["Yes", "No", "Not known"],
16158
16225
  "baspi4Enum": ["Yes", "No"],
@@ -16189,6 +16256,7 @@
16189
16256
  "nts2Ref": "A5.3.2",
16190
16257
  "ntsl2Ref": "A5.3.2",
16191
16258
  "title": "Is there a Japanese Knotweed management and treatment plan in place?",
16259
+ "ta6ed6Title": "Is there a Japanese knotweed management and treatment plan in place?",
16192
16260
  "type": "string",
16193
16261
  "enum": ["Yes", "No", "Not known"]
16194
16262
  }
@@ -16221,6 +16289,7 @@
16221
16289
  "ta6ed6Ref": "8.6.3",
16222
16290
  "ta6Ref": "7.8.3",
16223
16291
  "title": "Please supply a copy with any insurance cover linked to the plan.",
16292
+ "ta6ed6Title": "Provide a copy of the plan with any insurance cover linked to the plan.",
16224
16293
  "type": "string",
16225
16294
  "enum": ["Attached", "To follow"]
16226
16295
  }
@@ -21651,6 +21720,7 @@
21651
21720
  "ta6ed6Ref": "12.1.2",
21652
21721
  "piqRef": "A7.1.2",
21653
21722
  "title": "Supplier",
21723
+ "ta6ed6Title": "Provider's name",
21654
21724
  "type": "string"
21655
21725
  },
21656
21726
  "electricityMeter": {
@@ -21672,6 +21742,7 @@
21672
21742
  "ta6Ref": "13.1b1",
21673
21743
  "ta6ed6Ref": "12.1.3",
21674
21744
  "title": "Describe the location of the meter",
21745
+ "ta6ed6Title": "Location of meter",
21675
21746
  "type": "string",
21676
21747
  "minLength": 1
21677
21748
  },
@@ -21685,6 +21756,7 @@
21685
21756
  "mpan": {
21686
21757
  "ta6ed6Ref": "12.1.4",
21687
21758
  "title": "Meter Point Administration Number (MPAN)",
21759
+ "ta6ed6Title": "MPAN number",
21688
21760
  "description": "Your MPAN is on your electricity or dual fuel bill, usually in a box marked 'Supply Number'. It's 21 digits long and begins with 'S'. You'll only need the last 12 or 13 digits.",
21689
21761
  "ta6ed6Description": "Your MPAN is on your electricity or dual fuel bill, usually in a box marked 'Supply Number'. It's 21 digits long and begins with 'S'. You'll only need the last 12 or 13 digits.",
21690
21762
  "type": "string"
@@ -21735,6 +21807,7 @@
21735
21807
  "ta6ed6Ref": "5.6",
21736
21808
  "sef25Ref": "S1",
21737
21809
  "title": "Solar or photovoltaic panels",
21810
+ "ta6ed6Title": "Has a solar power system for generating electricity, hot water or heating been installed at the property?",
21738
21811
  "type": "object",
21739
21812
  "properties": {
21740
21813
  "yesNo": {
@@ -21801,6 +21874,7 @@
21801
21874
  "rdsRef": "Objects/Installation",
21802
21875
  "piqRef": "B4.4.2",
21803
21876
  "title": "What year were they installed?",
21877
+ "ta6ed6Title": "Which year was the system installed? (YYYY)",
21804
21878
  "type": "integer"
21805
21879
  },
21806
21880
  "panelsOwnedOutright": {
@@ -21814,6 +21888,7 @@
21814
21888
  "rdsRef": "Objects/Ownership",
21815
21889
  "piqRef": "B4.4.3",
21816
21890
  "title": "Do you own the panels, and all equipment related to them, outright?",
21891
+ "ta6ed6Title": "Do you own the system outright?",
21817
21892
  "type": "object",
21818
21893
  "properties": {
21819
21894
  "yesNo": {
@@ -21916,6 +21991,7 @@
21916
21991
  "rdsRef": "Objects/Ownership",
21917
21992
  "piqRef": "B4.4.4",
21918
21993
  "title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
21994
+ "ta6ed6Title": "Has a long lease of the roof or air space been granted to a solar power system provider? A typical long lease may last 20 to 25 years.",
21919
21995
  "type": "object",
21920
21996
  "properties": {
21921
21997
  "yesNo": {
@@ -22100,6 +22176,7 @@
22100
22176
  "ta6ed6Ref": "5.6f",
22101
22177
  "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
22102
22178
  "title": "Photovoltaic batteries",
22179
+ "ta6ed6Title": "Is there a battery for storing solar power?",
22103
22180
  "type": "object",
22104
22181
  "properties": {
22105
22182
  "yesNo": {
@@ -22161,6 +22238,7 @@
22161
22238
  "ta6ed6Ref": "5.6g",
22162
22239
  "rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
22163
22240
  "title": "Is the system connected to the National Grid?",
22241
+ "ta6ed6Title": "Does the system feed into the National Grid?",
22164
22242
  "type": "object",
22165
22243
  "properties": {
22166
22244
  "yesNo": {
@@ -22403,6 +22481,7 @@
22403
22481
  "serviceProviderName": {
22404
22482
  "ta6ed6Ref": "12.6.4",
22405
22483
  "title": "Service provider name",
22484
+ "ta6ed6Title": "Service provider's name",
22406
22485
  "type": "string"
22407
22486
  }
22408
22487
  },
@@ -22752,6 +22831,7 @@
22752
22831
  "ta6ed6Ref": "12.3.2",
22753
22832
  "piqRef": "A7.1.8",
22754
22833
  "title": "Supplier",
22834
+ "ta6ed6Title": "Provider's name",
22755
22835
  "type": "string",
22756
22836
  "minLength": 1
22757
22837
  },
@@ -22778,6 +22858,7 @@
22778
22858
  "ta6Ref": "13.3b1",
22779
22859
  "ta6ed6Ref": "12.3.3",
22780
22860
  "title": "Describe the location of the stopcock",
22861
+ "ta6ed6Title": "Location of stopcock",
22781
22862
  "type": "string",
22782
22863
  "minLength": 1
22783
22864
  },
@@ -22847,6 +22928,7 @@
22847
22928
  "ta6ed6Ref": "12.3.4",
22848
22929
  "con29DWRef": "3.6",
22849
22930
  "title": "Describe the location of the meter",
22931
+ "ta6ed6Title": "Location of meter (if any)",
22850
22932
  "type": "string",
22851
22933
  "minLength": 1
22852
22934
  },
@@ -23096,6 +23178,7 @@
23096
23178
  "ta6ed6Ref": "11.5b",
23097
23179
  "con29DWRef": "2.2",
23098
23180
  "title": "Mains surface water drainage",
23181
+ "ta6ed6Title": "Surface water drainage?",
23099
23182
  "type": "object",
23100
23183
  "properties": {
23101
23184
  "yesNo": {
@@ -23183,6 +23266,7 @@
23183
23266
  "ta6ed6Ref": "11.5a",
23184
23267
  "con29DWRef": "2.1",
23185
23268
  "title": "Mains foul drainage / sewerage",
23269
+ "ta6ed6Title": "Foul water drainage?",
23186
23270
  "type": "object",
23187
23271
  "baspi4Required": ["yesNo"],
23188
23272
  "baspi5Required": ["yesNo"],
@@ -23346,6 +23430,7 @@
23346
23430
  "ta6ed6Ref": "11.7h",
23347
23431
  "piqRef": "A7.1.29",
23348
23432
  "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
23433
+ "ta6ed6Title": "Is the use of the sewerage system shared with other properties?",
23349
23434
  "type": "object",
23350
23435
  "properties": {
23351
23436
  "yesNo": {
@@ -23416,6 +23501,7 @@
23416
23501
  "ta6ed6Ref": "11.7i",
23417
23502
  "piqRef": "A7.1.30",
23418
23503
  "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else's land?",
23504
+ "ta6ed6Title": "Is any part of the sewerage system, or the access to it, outside the boundary of the property?",
23419
23505
  "ta6Title": "Is any part of the septic tank, sewage treatment plant (including any soakaway or outfall) or cesspool, or the access to it, outside the boundary of the property?",
23420
23506
  "type": "object",
23421
23507
  "properties": {
@@ -23453,6 +23539,7 @@
23453
23539
  "ta6Ref": "12.10.2",
23454
23540
  "ta6ed6Ref": "11.7i",
23455
23541
  "title": "Please supply a plan showing the location of the system and how access is obtained.",
23542
+ "ta6ed6Title": "Supply a plan showing the location of the system and how access is obtained.",
23456
23543
  "type": "string",
23457
23544
  "enum": ["Attached", "To follow"]
23458
23545
  }
@@ -23554,6 +23641,7 @@
23554
23641
  "hasInfiltrationSystem": {
23555
23642
  "ta6ed6Ref": "11.7g",
23556
23643
  "title": "Does the sewerage system have an infiltration system?",
23644
+ "ta6ed6Title": "If the sewerage system discharges to the ground, does it have an infiltration system?",
23557
23645
  "type": "object",
23558
23646
  "ta6ed6Required": ["yesNo"],
23559
23647
  "properties": {
@@ -23608,6 +23696,7 @@
23608
23696
  "dateDischargeCommenced": {
23609
23697
  "ta6ed6Ref": "11.7a",
23610
23698
  "title": "When did the discharge commence?",
23699
+ "ta6ed6Title": "When did the discharge commence? (MM/YYYY)",
23611
23700
  "type": "string",
23612
23701
  "oneOf": [
23613
23702
  {
@@ -23621,6 +23710,7 @@
23621
23710
  "dateInstalled": {
23622
23711
  "ta6ed6Ref": "11.7b",
23623
23712
  "title": "When was the system installed?",
23713
+ "ta6ed6Title": "When was the system installed? (MM/YYYY)",
23624
23714
  "type": "string",
23625
23715
  "format": "date"
23626
23716
  },
@@ -23630,6 +23720,7 @@
23630
23720
  "ta6Ref": "12.5.1",
23631
23721
  "ta6ed6Ref": "11.7c",
23632
23722
  "title": "When was the system last replaced or upgraded?",
23723
+ "ta6ed6Title": "When was the sewerage system last replaced or upgraded? (MM/YYYY)",
23633
23724
  "type": "string",
23634
23725
  "format": "date"
23635
23726
  },
@@ -23640,6 +23731,7 @@
23640
23731
  "ta6ed6Ref": "11.7d",
23641
23732
  "piqRef": "A7.1.24",
23642
23733
  "title": "Date last emptied",
23734
+ "ta6ed6Title": "If a cesspool, when was the container last emptied? (MM/YYYY)",
23643
23735
  "type": "string",
23644
23736
  "format": "date"
23645
23737
  }
@@ -23670,6 +23762,7 @@
23670
23762
  "dateDischargeCommenced": {
23671
23763
  "ta6ed6Ref": "11.7a",
23672
23764
  "title": "When did the discharge commence?",
23765
+ "ta6ed6Title": "When did the discharge commence? (MM/YYYY)",
23673
23766
  "type": "string",
23674
23767
  "oneOf": [
23675
23768
  {
@@ -23683,12 +23776,14 @@
23683
23776
  "dateInstalled": {
23684
23777
  "ta6ed6Ref": "11.7b",
23685
23778
  "title": "Date installed",
23779
+ "ta6ed6Title": "When was the system installed? (MM/YYYY)",
23686
23780
  "type": "string",
23687
23781
  "format": "date"
23688
23782
  },
23689
23783
  "dateReplaced": {
23690
23784
  "ta6ed6Ref": "11.7c",
23691
23785
  "title": "When was the system last replaced or upgraded?",
23786
+ "ta6ed6Title": "When was the sewerage system last replaced or upgraded? (MM/YYYY)",
23692
23787
  "type": "string",
23693
23788
  "format": "date"
23694
23789
  },
@@ -23699,6 +23794,7 @@
23699
23794
  "ta6ed6Ref": "11.7d",
23700
23795
  "piqRef": "A7.1.26",
23701
23796
  "title": "Date last emptied",
23797
+ "ta6ed6Title": "If a cesspool, when was the container last emptied? (MM/YYYY)",
23702
23798
  "type": "string",
23703
23799
  "format": "date"
23704
23800
  }
@@ -23720,6 +23816,7 @@
23720
23816
  "dateDischargeCommenced": {
23721
23817
  "ta6ed6Ref": "11.7a",
23722
23818
  "title": "When did the discharge commence?",
23819
+ "ta6ed6Title": "When did the discharge commence? (MM/YYYY)",
23723
23820
  "type": "string",
23724
23821
  "oneOf": [
23725
23822
  {
@@ -23733,6 +23830,7 @@
23733
23830
  "supplier": {
23734
23831
  "ta6ed6Ref": "12.5.2",
23735
23832
  "title": "Provider name",
23833
+ "ta6ed6Title": "Provider's name",
23736
23834
  "type": "string"
23737
23835
  },
23738
23836
  "makeModel": {
@@ -23743,6 +23841,7 @@
23743
23841
  "serviceProviderName": {
23744
23842
  "ta6ed6Ref": "12.5.4",
23745
23843
  "title": "Service provider name",
23844
+ "ta6ed6Title": "Service provider's name",
23746
23845
  "type": "string"
23747
23846
  },
23748
23847
  "dateInstalled": {
@@ -23751,12 +23850,14 @@
23751
23850
  "ta6Ref": "12.9",
23752
23851
  "ta6ed6Ref": "11.7b",
23753
23852
  "title": "When was the system installed",
23853
+ "ta6ed6Title": "When was the system installed? (MM/YYYY)",
23754
23854
  "type": "string",
23755
23855
  "format": "date"
23756
23856
  },
23757
23857
  "dateReplaced": {
23758
23858
  "ta6ed6Ref": "11.7c",
23759
23859
  "title": "When was the system last replaced or upgraded?",
23860
+ "ta6ed6Title": "When was the sewerage system last replaced or upgraded? (MM/YYYY)",
23760
23861
  "type": "string",
23761
23862
  "format": "date"
23762
23863
  },
@@ -23766,6 +23867,7 @@
23766
23867
  "ta6Ref": "12.8",
23767
23868
  "ta6ed6Ref": "11.7e",
23768
23869
  "title": "When was the treatment plant last serviced",
23870
+ "ta6ed6Title": "If the property is served by a sewage treatment plant, when was the treatment plant last serviced? (MM/YYYY)",
23769
23871
  "type": "string",
23770
23872
  "format": "date"
23771
23873
  },
@@ -24319,6 +24421,7 @@
24319
24421
  "rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
24320
24422
  "piqRef": "A7.3",
24321
24423
  "title": "Heating",
24424
+ "ta6ed6Title": "Heating systems",
24322
24425
  "type": "object",
24323
24426
  "baspi4Required": ["heatingSystem"],
24324
24427
  "baspi5Required": ["heatingSystem"],
@@ -24365,6 +24468,7 @@
24365
24468
  "ta6ed6Ref": "11.4.1",
24366
24469
  "piqRef": "A7.3.1",
24367
24470
  "title": "What type of heating system does the property have?",
24471
+ "ta6ed6Title": "How is the property heated? Tick all that apply",
24368
24472
  "type": "string",
24369
24473
  "enum": [
24370
24474
  "Central heating",
@@ -24507,8 +24611,8 @@
24507
24611
  "baspi5Ref": "A7.1.0",
24508
24612
  "ta6Ref": "13.2b",
24509
24613
  "ta6ed6Ref": "12.2.2",
24510
- "ta6ed6Title": "Provider",
24511
24614
  "title": "Supplier",
24615
+ "ta6ed6Title": "Provider",
24512
24616
  "type": "string"
24513
24617
  },
24514
24618
  "gasMeter": {
@@ -24526,6 +24630,7 @@
24526
24630
  "ta6Ref": "13.2c1",
24527
24631
  "ta6ed6Ref": "12.2.3",
24528
24632
  "title": "Describe the location of the meter",
24633
+ "ta6ed6Title": "Location of meter",
24529
24634
  "type": "string",
24530
24635
  "minLength": 1
24531
24636
  },
@@ -24539,6 +24644,7 @@
24539
24644
  "mprn": {
24540
24645
  "ta6ed6Ref": "12.2.4",
24541
24646
  "title": "Meter Point Reference Number (MPRN)",
24647
+ "ta6ed6Title": "MPRN number",
24542
24648
  "description": "You can find your property's MPRN on your gas or dual fuel bill. It's usually marked 'Meter Point Reference Number' and is between six and 10 digits long.",
24543
24649
  "type": "string"
24544
24650
  }
@@ -24606,6 +24712,7 @@
24606
24712
  "ta6ed6Ref": "11.4a",
24607
24713
  "piqRef": "A7.4.1",
24608
24714
  "title": "When was the heating system installed?",
24715
+ "ta6ed6Title": "When was the heating system installed? (DD/MM/YYYY)",
24609
24716
  "type": "string",
24610
24717
  "oneOf": [
24611
24718
  {
@@ -24659,6 +24766,7 @@
24659
24766
  "boilerInstallationDate": {
24660
24767
  "ta6ed6Ref": "11.4b2",
24661
24768
  "title": "When was the boiler installed?",
24769
+ "ta6ed6Title": "If there is a boiler (of any kind) when was it installed? (DD/MM/YYYY)",
24662
24770
  "type": "string",
24663
24771
  "oneOf": [
24664
24772
  {
@@ -24737,6 +24845,7 @@
24737
24845
  "ta6ed6Ref": "11.4g1",
24738
24846
  "piqRef": "A7.5.1",
24739
24847
  "title": "When was the heating system last serviced or maintained?",
24848
+ "ta6ed6Title": "In what year was the boiler and heating system last serviced or maintained?",
24740
24849
  "type": "string",
24741
24850
  "oneOf": [
24742
24851
  {
@@ -24753,6 +24862,7 @@
24753
24862
  "ta6Ref": "12.3d2",
24754
24863
  "ta6ed6Ref": "11.4g2",
24755
24864
  "title": "Please provide a copy of the service or maintenance works report.",
24865
+ "ta6ed6Title": "Please supply a copy of any service report.",
24756
24866
  "type": "string",
24757
24867
  "enum": ["Attached", "To follow", "Not available"],
24758
24868
  "ta6ed6Enum": ["Attached", "To follow"]
@@ -24987,6 +25097,7 @@
24987
25097
  "ta6Ref": "13",
24988
25098
  "ta6ed6Ref": "12",
24989
25099
  "title": "Connectivity",
25100
+ "ta6ed6Title": "Connection to services",
24990
25101
  "type": "object",
24991
25102
  "baspi4Required": [
24992
25103
  "telephone",
@@ -25060,6 +25171,7 @@
25060
25171
  "ta6ed6Ref": "12.7.2",
25061
25172
  "piqRef": "A7.1.12",
25062
25173
  "title": "Supplier",
25174
+ "ta6ed6Title": "Provider's name",
25063
25175
  "type": "string"
25064
25176
  }
25065
25177
  },
@@ -25257,6 +25369,7 @@
25257
25369
  "providerName": {
25258
25370
  "ta6ed6Ref": "12.8.2",
25259
25371
  "title": "Provider name",
25372
+ "ta6ed6Title": "Provider's name",
25260
25373
  "type": "string"
25261
25374
  }
25262
25375
  },
@@ -25449,6 +25562,7 @@
25449
25562
  "otherServices": {
25450
25563
  "ta6ed6Ref": "12.9.1",
25451
25564
  "title": "Details of any other services",
25565
+ "ta6ed6Title": "If there are any other services, please give details",
25452
25566
  "type": "string"
25453
25567
  }
25454
25568
  }
@@ -25478,8 +25592,8 @@
25478
25592
  "ta6ed6Ref": "7.2",
25479
25593
  "piqRef": "A8.1",
25480
25594
  "title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
25481
- "ta6Title": "Has any buildings insurance taken out by the seller ever been:",
25482
25595
  "ta6ed6Title": "Are you aware of the property insurance ever being difficult to obtain or subject to special conditions?",
25596
+ "ta6Title": "Has any buildings insurance taken out by the seller ever been:",
25483
25597
  "type": "object",
25484
25598
  "baspi4Required": [
25485
25599
  "abnormalRiseInPremiums",
@@ -25769,8 +25883,8 @@
25769
25883
  "sef25Ref": "I1.2",
25770
25884
  "piqRef": "A8.2",
25771
25885
  "title": "Do you currently insure the property?",
25772
- "ta6Title": "Does the seller insure the property?",
25773
25886
  "ta6ed6Title": "Do you insure the property?",
25887
+ "ta6Title": "Does the seller insure the property?",
25774
25888
  "type": "string",
25775
25889
  "enum": ["Yes", "No"]
25776
25890
  }
@@ -25825,8 +25939,8 @@
25825
25939
  "ta6ed6Ref": "7.3",
25826
25940
  "sef25Ref": "I1.1",
25827
25941
  "title": "Have you ever made a claim against your building insurance in relation to the property?",
25828
- "Title": "Has the seller made any buildings insurance claims?",
25829
25942
  "ta6ed6Title": "Have you made any buildings insurance claims?",
25943
+ "Title": "Has the seller made any buildings insurance claims?",
25830
25944
  "type": "object",
25831
25945
  "properties": {
25832
25946
  "yesNo": {
@@ -25907,6 +26021,7 @@
25907
26021
  "ta6ed6CompatRef": "TA6ED6-COMPAT.9",
25908
26022
  "sef25Ref": "R1",
25909
26023
  "title": "Rights and Informal Arrangements",
26024
+ "ta6ed6Title": "Rights and informal arrangements",
25910
26025
  "type": "object",
25911
26026
  "baspi4Required": [
25912
26027
  "sharedContributions",
@@ -25946,6 +26061,7 @@
25946
26061
  "ta6ed6CompatRef": "TA6ED6-COMPAT.9.2",
25947
26062
  "piqRef": "A10.1",
25948
26063
  "title": "Other than service charges and estate rentcharges, do you have to contribute towards the shared cost of a jointly-used service such as a shared driveway, road, parking area, garden or drain?",
26064
+ "ta6ed6Title": "Have you been asked to contribute towards the cost of the jointly used facilities?",
25949
26065
  "type": "object",
25950
26066
  "properties": {
25951
26067
  "yesNo": {
@@ -25963,8 +26079,9 @@
25963
26079
  "baspi5Required": ["yesNo"],
25964
26080
  "ta6Required": ["yesNo"],
25965
26081
  "ta6ed6Required": ["yesNo"],
25966
- "ta6ed6CompatRequired": ["yesNo"],
25967
- "ta6ed6Title": "Have you been asked to contribute towards the cost of the jointly used facilities?",
26082
+ "ta6ed6CompatRequired": [
26083
+ "yesNo"
26084
+ ],
25968
26085
  "ta6ed6Description": "If yes, give details of how much, how often and who you pay:",
25969
26086
  "discriminator": {
25970
26087
  "propertyName": "yesNo"
@@ -25991,8 +26108,8 @@
25991
26108
  "ta6Ref": "8.1.2",
25992
26109
  "ta6ed6Ref": "9.2.2",
25993
26110
  "piqRef": "A10.1.2",
25994
- "ta6ed6Title": "Please give details of how much, how often and who you pay:",
25995
26111
  "title": "Please give details including who collects payments and organises the work, the amount of the payments in the last year and whether they are regular payments or only when maintenance work is required",
26112
+ "ta6ed6Title": "Please give details of how much, how often and who you pay",
25996
26113
  "type": "string",
25997
26114
  "minLength": 1
25998
26115
  },
@@ -26091,8 +26208,8 @@
26091
26208
  "ta6Ref": "8.2.2",
26092
26209
  "ta6ed6Ref": "9.1.2",
26093
26210
  "piqRef": "A10.2.2",
26094
- "ta6ed6Title": "Please give details",
26095
26211
  "title": "Please give details and provide a plan showing the route of the access, parking etc",
26212
+ "ta6ed6Title": "Please give details",
26096
26213
  "type": "string",
26097
26214
  "minLength": 1
26098
26215
  },
@@ -26220,6 +26337,7 @@
26220
26337
  "ta6ed6Ref": "9.4",
26221
26338
  "sef25Ref": "R1",
26222
26339
  "title": "Do you know if any of the following rights or arrangements affect the property?",
26340
+ "ta6ed6Title": "Do the owners of any other properties exercise any rights or arrangements over the property?",
26223
26341
  "type": "object",
26224
26342
  "ntsRequired": ["publicRightOfWay"],
26225
26343
  "nts2Required": ["publicRightOfWay"],
@@ -26793,6 +26911,7 @@
26793
26911
  "disagreementOrComplaint": {
26794
26912
  "ta6ed6Ref": "9.6",
26795
26913
  "title": "Are you aware of any disagreement or complaint about any such rights?",
26914
+ "ta6ed6Title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
26796
26915
  "type": "object",
26797
26916
  "properties": {
26798
26917
  "yesNo": {
@@ -26821,6 +26940,7 @@
26821
26940
  "details": {
26822
26941
  "ta6ed6Ref": "9.6.2",
26823
26942
  "title": "Details",
26943
+ "ta6ed6Title": "Please give details",
26824
26944
  "type": "string",
26825
26945
  "minLength": 1
26826
26946
  }
@@ -26868,6 +26988,7 @@
26868
26988
  "disagreementOrComplaint": {
26869
26989
  "ta6ed6Ref": "9.6",
26870
26990
  "title": "Are you aware of any disagreement or complaint about any such arrangements?",
26991
+ "ta6ed6Title": "Are you aware of any disagreement or complaint about any such right or arrangement?",
26871
26992
  "type": "object",
26872
26993
  "properties": {
26873
26994
  "yesNo": {
@@ -26895,6 +27016,7 @@
26895
27016
  },
26896
27017
  "details": {
26897
27018
  "ta6ed6Ref": "9.6.2",
27019
+ "ta6ed6Title": "Please give details",
26898
27020
  "type": "string",
26899
27021
  "minLength": 1
26900
27022
  }
@@ -26922,6 +27044,7 @@
26922
27044
  "piqRef": "A11.1",
26923
27045
  "sef25Ref": "E1",
26924
27046
  "title": "Environmental Issues Affecting the Property",
27047
+ "ta6ed6Title": "Environmental matters",
26925
27048
  "type": "object",
26926
27049
  "baspi4Required": ["flooding", "radon", "otherEnvironmental"],
26927
27050
  "baspi5Required": [
@@ -27165,6 +27288,7 @@
27165
27288
  "ta6Ref": "7.1",
27166
27289
  "ta6ed6Ref": "8.1",
27167
27290
  "title": "Historical flooding",
27291
+ "ta6ed6Title": "Are you aware of the property or any part of it ever being flooded?",
27168
27292
  "type": "object",
27169
27293
  "baspi4Required": ["hasBeenFlooded"],
27170
27294
  "baspi5Required": ["hasBeenFlooded"],
@@ -27173,8 +27297,9 @@
27173
27297
  "ntslRequired": ["hasBeenFlooded"],
27174
27298
  "ntsl2Required": ["hasBeenFlooded"],
27175
27299
  "ta6Required": ["hasBeenFlooded"],
27176
- "ta6ed6Required": ["hasBeenFlooded"],
27177
- "ta6ed6Title": "Are you aware of the property or any part of it ever being flooded?",
27300
+ "ta6ed6Required": [
27301
+ "hasBeenFlooded"
27302
+ ],
27178
27303
  "ta6ed6Description": "If yes, what type of flooding took place?",
27179
27304
  "properties": {
27180
27305
  "hasBeenFlooded": {
@@ -27188,6 +27313,7 @@
27188
27313
  "ta6ed6Ref": "8.1.1",
27189
27314
  "sef25Ref": "E1.2",
27190
27315
  "title": "Has the property been flooded in the last 5 years?",
27316
+ "ta6ed6Title": "Are you aware of the property or any part of it ever being flooded?",
27191
27317
  "ta6Title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
27192
27318
  "type": "string",
27193
27319
  "enum": ["Yes", "No"]
@@ -27219,8 +27345,8 @@
27219
27345
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
27220
27346
  "ta6Ref": "7.2",
27221
27347
  "ta6ed6Ref": "8.1",
27222
- "ta6ed6Title": "If yes, what type of flooding took place?",
27223
27348
  "title": "What type of flooding occurred?",
27349
+ "ta6ed6Title": "What type of flooding took place?",
27224
27350
  "type": "array",
27225
27351
  "items": {
27226
27352
  "type": "string",
@@ -27243,8 +27369,8 @@
27243
27369
  "baspi5Ref": "A11.1.2.1",
27244
27370
  "ta6Ref": "7.1.2",
27245
27371
  "ta6ed6Ref": "8.1.2",
27246
- "ta6ed6Title": "Give details about the date(s) any flooding occurred and which parts flooded:",
27247
27372
  "title": "Please state when the flooding occurred and identify the parts that flooded",
27373
+ "ta6ed6Title": "Give details about the date(s) any flooding occurred and which parts flooded",
27248
27374
  "type": "string",
27249
27375
  "minLength": 1
27250
27376
  }
@@ -27265,11 +27391,13 @@
27265
27391
  "ntsl2Ref": "C3.1.1.3",
27266
27392
  "ta6ed6Ref": "8.2",
27267
27393
  "title": "Flood defences",
27394
+ "ta6ed6Title": "Are you aware of any defences installed at the property to prevent flooding?",
27268
27395
  "type": "object",
27269
27396
  "nts2Required": ["hasFloodDefences"],
27270
27397
  "ntsl2Required": ["hasFloodDefences"],
27271
- "ta6ed6Required": ["hasFloodDefences"],
27272
- "ta6ed6Title": "Are you aware of any defences installed at the property to prevent flooding?",
27398
+ "ta6ed6Required": [
27399
+ "hasFloodDefences"
27400
+ ],
27273
27401
  "ta6ed6Description": "If yes, please give details:",
27274
27402
  "properties": {
27275
27403
  "hasFloodDefences": {
@@ -27277,6 +27405,7 @@
27277
27405
  "ntsl2Ref": "C3.1.1.3.1",
27278
27406
  "ta6ed6Ref": "8.2.1",
27279
27407
  "title": "Are there any defences to prevent flooding installed at the property?",
27408
+ "ta6ed6Title": "Are you aware of any defences installed at the property to prevent flooding?",
27280
27409
  "type": "string",
27281
27410
  "enum": ["Yes", "No"]
27282
27411
  }
@@ -27301,8 +27430,8 @@
27301
27430
  "nts2Ref": "C3.1.1.3.2",
27302
27431
  "ntsl2Ref": "C3.1.1.3.2",
27303
27432
  "ta6ed6Ref": "8.2.2",
27304
- "ta6ed6Title": "Please give details:",
27305
27433
  "title": "Please provide details",
27434
+ "ta6ed6Title": "Please give details",
27306
27435
  "type": "string",
27307
27436
  "minLength": 1
27308
27437
  }
@@ -27455,6 +27584,7 @@
27455
27584
  "ta6Ref": "7.4",
27456
27585
  "ta6ed6Ref": "8.3",
27457
27586
  "title": "Has a Radon test been carried out on the property?",
27587
+ "ta6ed6Title": "Are you aware of any radon tests that have been carried out on the property?",
27458
27588
  "type": "object",
27459
27589
  "properties": {
27460
27590
  "yesNo": {
@@ -27496,6 +27626,7 @@
27496
27626
  "ta6ed6Ref": "8.3.1a",
27497
27627
  "ta6Ref": "7.4b",
27498
27628
  "title": "Was the test result was below the recommended action level?",
27629
+ "ta6ed6Title": "Was the test result below the 'recommended action level'?",
27499
27630
  "type": "string",
27500
27631
  "enum": ["Yes", "No"]
27501
27632
  },
@@ -27505,6 +27636,7 @@
27505
27636
  "ta6ed6Ref": "8.3.1b",
27506
27637
  "ta6Ref": "7.4a",
27507
27638
  "title": "Please supply a copy of the report",
27639
+ "ta6ed6Title": "Supply a copy of the report",
27508
27640
  "type": "string",
27509
27641
  "enum": ["Attached", "To follow"]
27510
27642
  }
@@ -27523,6 +27655,7 @@
27523
27655
  "ta6ed6Ref": "8.4",
27524
27656
  "ta6Ref": "7.5",
27525
27657
  "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?",
27658
+ "ta6ed6Title": "Were any remedial measures undertaken to reduce radon gas levels in the property? Measures could have been undertaken during construction or while adding an extension.",
27526
27659
  "ta6ed6Description": "Measures could have been undertaken during construction or while adding an extension.",
27527
27660
  "type": "object",
27528
27661
  "properties": {
@@ -28817,6 +28950,7 @@
28817
28950
  "ta6ed6Ref": "15",
28818
28951
  "sef25Ref": "M1",
28819
28952
  "title": "Additional Information",
28953
+ "ta6ed6Title": "Additional information about your answers",
28820
28954
  "type": "object",
28821
28955
  "baspi4Required": [
28822
28956
  "restrictionsOnUseNotCompliedWith",
@@ -28849,12 +28983,14 @@
28849
28983
  "consentsAttached": {
28850
28984
  "ta6ed6Ref": "15.1.2",
28851
28985
  "title": "List the consents that are attached",
28986
+ "ta6ed6Title": "Consents attached",
28852
28987
  "type": "string",
28853
28988
  "minLength": 1
28854
28989
  },
28855
28990
  "consentsToFollow": {
28856
28991
  "ta6ed6Ref": "15.1.3",
28857
28992
  "title": "List the consents to follow",
28993
+ "ta6ed6Title": "Consents to follow",
28858
28994
  "type": "string",
28859
28995
  "minLength": 1
28860
28996
  },
@@ -28869,6 +29005,7 @@
28869
29005
  "furtherInformation": {
28870
29006
  "ta6ed6Ref": "15.2",
28871
29007
  "title": "If there is any further information about any of your answers supplied, provide details below and/or supply additional documents.",
29008
+ "ta6ed6Title": "If there is any further information about any of your answers on this form, provide details below and/or supply additional documents.",
28872
29009
  "type": "object",
28873
29010
  "properties": {
28874
29011
  "details": {
@@ -29174,6 +29311,7 @@
29174
29311
  "ta6ed6CompatRef": "TA6ED6-COMPAT.2",
29175
29312
  "piqRef": "B3.1",
29176
29313
  "title": "Legal Boundaries",
29314
+ "ta6ed6Title": "Boundaries",
29177
29315
  "description": "",
29178
29316
  "type": "object",
29179
29317
  "baspi4Required": [
@@ -29469,6 +29607,7 @@
29469
29607
  "ta6Ref": "1.1",
29470
29608
  "ta6ed6Ref": "2.1",
29471
29609
  "title": "Please indicate who has repaired, or treated as belonging to them, each of the boundaries. Identify each boundary as if you were looking at the property from the road.",
29610
+ "ta6ed6Title": "Looking towards the property from the road, who owns or accepts responsibility to maintain or repair the boundary features",
29472
29611
  "ta6title": "Looking towards the property from the road, who owns or accepts responsibility to maintain or repair the boundary features:",
29473
29612
  "type": "object",
29474
29613
  "properties": {
@@ -29480,6 +29619,7 @@
29480
29619
  "ta6ed6Ref": "2.1a",
29481
29620
  "piqRef": "B3.1.1",
29482
29621
  "title": "On the left",
29622
+ "ta6ed6Title": "On the left?",
29483
29623
  "type": "string",
29484
29624
  "enum": ["Seller", "Shared", "Neighbour", "Not known"]
29485
29625
  },
@@ -29491,6 +29631,7 @@
29491
29631
  "ta6ed6Ref": "2.1b",
29492
29632
  "piqRef": "B3.1.2",
29493
29633
  "title": "On the right",
29634
+ "ta6ed6Title": "On the right?",
29494
29635
  "type": "string",
29495
29636
  "enum": ["Seller", "Shared", "Neighbour", "Not known"]
29496
29637
  },
@@ -29502,6 +29643,7 @@
29502
29643
  "ta6ed6Ref": "2.1c",
29503
29644
  "piqRef": "B3.1.3",
29504
29645
  "title": "At the rear",
29646
+ "ta6ed6Title": "At the rear?",
29505
29647
  "type": "string",
29506
29648
  "enum": ["Seller", "Shared", "Neighbour", "Not known"]
29507
29649
  },
@@ -29513,6 +29655,7 @@
29513
29655
  "ta6ed6Ref": "2.1d",
29514
29656
  "piqRef": "B3.1.4",
29515
29657
  "title": "At the front",
29658
+ "ta6ed6Title": "At the front?",
29516
29659
  "type": "string",
29517
29660
  "enum": ["Seller", "Shared", "Neighbour", "Not known"]
29518
29661
  }
@@ -29535,6 +29678,7 @@
29535
29678
  "ta6Ref": "1.2.1",
29536
29679
  "ta6ed6Ref": "2.2.1",
29537
29680
  "title": "Please indicate ownership or those you have repaired by written description or marking them on a plan of the property",
29681
+ "ta6ed6Title": "If the boundaries of the property are irregular, indicate ownership by written description or by reference to a plan",
29538
29682
  "type": "string",
29539
29683
  "minLength": 1
29540
29684
  },
@@ -29570,8 +29714,8 @@
29570
29714
  "ta6ed6Ref": "2.3",
29571
29715
  "piqRef": "B3.3",
29572
29716
  "title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
29573
- "ta6Title": "Is the seller aware of any boundary feature having been moved in the last 10 years or during the seller's period of ownership if longer?",
29574
29717
  "ta6ed6Title": "Are you aware of any boundary feature being moved, any adjacent land being added to the property, or any neighbour taking over or building on any part of your property?",
29718
+ "ta6Title": "Is the seller aware of any boundary feature having been moved in the last 10 years or during the seller's period of ownership if longer?",
29575
29719
  "type": "object",
29576
29720
  "properties": {
29577
29721
  "yesNo": {
@@ -29620,6 +29764,7 @@
29620
29764
  "ta6ed6Ref": "2.3.2",
29621
29765
  "piqRef": "B3.3.2",
29622
29766
  "title": "Details",
29767
+ "ta6ed6Title": "Please give details",
29623
29768
  "type": "string",
29624
29769
  "minLength": 1
29625
29770
  }
@@ -29697,8 +29842,8 @@
29697
29842
  "ta6ed6Ref": "2.4",
29698
29843
  "ta6ed6CompatRef": "TA6ED6-COMPAT.2.4",
29699
29844
  "title": "Is there a flying freehold?",
29700
- "ta6Title": "Does any part of the property or any building on the property overhang, or project under, the boundary of the neighbouring property or road, for example cellars under the pavement, overhanging eaves or covered walkways?",
29701
29845
  "ta6ed6Title": "Does any part of the property or any building on the property overhang or project under the boundary of the neighbouring property or road? For example, cellars under the pavement, overhanging eaves or covered walkways.",
29846
+ "ta6Title": "Does any part of the property or any building on the property overhang, or project under, the boundary of the neighbouring property or road, for example cellars under the pavement, overhanging eaves or covered walkways?",
29702
29847
  "description": "NOTE: a flying freehold is when part of the property overhangs a neighbour's property or an accessway - e.g. a terrace house where part of the upstairs is over an accessway which belongs to someone else.",
29703
29848
  "ta6Description": "",
29704
29849
  "ta6ed6Description": "If yes, please give details:",
@@ -29752,6 +29897,7 @@
29752
29897
  "ta6Ref": "1.5.2",
29753
29898
  "ta6ed6Ref": "2.4.2",
29754
29899
  "title": "Details",
29900
+ "ta6ed6Title": "Please give details",
29755
29901
  "type": "string",
29756
29902
  "minLength": 1
29757
29903
  }
@@ -29771,6 +29917,7 @@
29771
29917
  "ta6Ref": "8",
29772
29918
  "ta6ed6Ref": "9",
29773
29919
  "title": "Services Crossing Other Property",
29920
+ "ta6ed6Title": "Facilities crossing the property or any other property",
29774
29921
  "type": "object",
29775
29922
  "baspi4Required": [
29776
29923
  "pipesWiresCablesDrainsToProperty",
@@ -29801,8 +29948,8 @@
29801
29948
  "ta6ed6Ref": "9.7",
29802
29949
  "piqRef": "B4.1",
29803
29950
  "title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
29804
- "ta6Title": "Do any drains, pipes or wires serving the property cross any neighbour's property?",
29805
29951
  "ta6ed6Title": "Are you aware of any drains, pipes or wires serving the property that cross any other property?",
29952
+ "ta6Title": "Do any drains, pipes or wires serving the property cross any neighbour's property?",
29806
29953
  "type": "object",
29807
29954
  "properties": {
29808
29955
  "yesNo": {
@@ -29843,6 +29990,7 @@
29843
29990
  "ta6Ref": "8.7.2",
29844
29991
  "ta6ed6Ref": "9.7.2",
29845
29992
  "title": "Please provide details",
29993
+ "ta6ed6Title": "Please give details",
29846
29994
  "type": "string",
29847
29995
  "minLength": 1
29848
29996
  },
@@ -29869,6 +30017,7 @@
29869
30017
  "ta6ed6Ref": "9.8",
29870
30018
  "piqRef": "B4.2",
29871
30019
  "title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
30020
+ "ta6ed6Title": "Are you aware of any drains, pipes or wires leading to any other property that cross the property?",
29872
30021
  "ta6Ttle": "Do any drains, pipes or wires leading to any neighbour's property cross the property?",
29873
30022
  "type": "object",
29874
30023
  "properties": {
@@ -29886,8 +30035,9 @@
29886
30035
  "baspi4Required": ["yesNo"],
29887
30036
  "baspi5Required": ["yesNo"],
29888
30037
  "ta6Required": ["yesNo"],
29889
- "ta6ed6Required": ["yesNo"],
29890
- "ta6ed6Title": "Are you aware of any drains, pipes or wires leading to any other property that cross the property?",
30038
+ "ta6ed6Required": [
30039
+ "yesNo"
30040
+ ],
29891
30041
  "discriminator": {
29892
30042
  "propertyName": "yesNo"
29893
30043
  },
@@ -29911,6 +30061,7 @@
29911
30061
  "ta6ed6Ref": "9.8.2",
29912
30062
  "piqRef": "B4.2.2",
29913
30063
  "title": "Please provide details",
30064
+ "ta6ed6Title": "Please give details",
29914
30065
  "type": "string",
29915
30066
  "minLength": 1
29916
30067
  },
@@ -29937,8 +30088,8 @@
29937
30088
  "ta6ed6Ref": "9.9",
29938
30089
  "piqRef": "B4.3",
29939
30090
  "title": "Are you aware of any formal or informal agreements or arrangements for pipes, wires cables or drains to cross either your property or neighbouring property?",
29940
- "ta6Title": "Is there any agreement or arrangement about drains, pipes or wires?",
29941
30091
  "ta6ed6Title": "Is there any agreement or arrangement about drains, pipes or wires?",
30092
+ "ta6Title": "Is there any agreement or arrangement about drains, pipes or wires?",
29942
30093
  "type": "object",
29943
30094
  "properties": {
29944
30095
  "yesNo": {
@@ -29979,6 +30130,7 @@
29979
30130
  "ta6ed6Ref": "9.9.2",
29980
30131
  "piqRef": "B4.3.2",
29981
30132
  "title": "Please provide details",
30133
+ "ta6ed6Title": "Supply a copy or give details",
29982
30134
  "type": "string",
29983
30135
  "minLength": 1
29984
30136
  },
@@ -30007,6 +30159,7 @@
30007
30159
  "ta6Ref": "12",
30008
30160
  "ta6ed6Ref": "11",
30009
30161
  "title": "Electrical Works",
30162
+ "ta6ed6Title": "Electrical systems",
30010
30163
  "type": "object",
30011
30164
  "baspi4Required": [
30012
30165
  "testedByQualifiedElectrician",
@@ -30033,6 +30186,7 @@
30033
30186
  "ta6ed6Ref": "11.3",
30034
30187
  "piqRef": "B7.1",
30035
30188
  "title": "Have the electrics at the property been tested by a qualified electrician?",
30189
+ "ta6ed6Title": "Does the property have an Electrical Installation Condition Report (EICR)?",
30036
30190
  "type": "object",
30037
30191
  "properties": {
30038
30192
  "yesNo": {
@@ -30104,6 +30258,7 @@
30104
30258
  "ta6ed6Ref": "11.1",
30105
30259
  "piqRef": "B7.2",
30106
30260
  "title": "Since 1st January 2005, has any electrical work been carried out to the property?",
30261
+ "ta6ed6Title": "Are you aware of any electrical installation works carried out at the property?",
30107
30262
  "type": "object",
30108
30263
  "properties": {
30109
30264
  "yesNo": {
@@ -30157,6 +30312,7 @@
30157
30312
  "baspi5Ref": "B4.2.3",
30158
30313
  "ta6ed6Ref": "11.1",
30159
30314
  "title": "Provide details",
30315
+ "ta6ed6Title": "Give details including when this work took place",
30160
30316
  "type": "string",
30161
30317
  "minLength": 1
30162
30318
  },
@@ -30417,6 +30573,7 @@
30417
30573
  "ta6ed6Ref": "6",
30418
30574
  "sef25Ref": "W1",
30419
30575
  "title": "Guarantees, Warranties and Indemnity Insurances",
30576
+ "ta6ed6Title": "Guarantees and warranties",
30420
30577
  "type": "object",
30421
30578
  "baspi4Required": ["hasValidGuaranteesOrWarranties"],
30422
30579
  "baspi5Required": ["hasValidGuaranteesOrWarranties"],
@@ -30433,6 +30590,7 @@
30433
30590
  "piqRef": "B5.1",
30434
30591
  "sef25Ref": "W1.0",
30435
30592
  "title": "Are there any valid guarantees, warranties or indemnity insurances relating to this property?",
30593
+ "ta6ed6Title": "Does the property have any of the following unexpired guarantees or warranties?",
30436
30594
  "type": "string",
30437
30595
  "enum": ["Yes", "No"]
30438
30596
  }
@@ -30462,6 +30620,7 @@
30462
30620
  "piqRef": "B5.1.1",
30463
30621
  "sef25Ref": "W1.1",
30464
30622
  "title": "New Home Warranty (NHBC or similar)",
30623
+ "ta6ed6Title": "New home warranty (e.g. NHBC or similar)",
30465
30624
  "type": "object",
30466
30625
  "properties": {
30467
30626
  "yesNo": {
@@ -30534,6 +30693,7 @@
30534
30693
  "ta6Ref": "5.1f",
30535
30694
  "sef25Ref": "W1.2",
30536
30695
  "title": "Roofing work",
30696
+ "ta6ed6Title": "Roofing",
30537
30697
  "type": "object",
30538
30698
  "properties": {
30539
30699
  "yesNo": {
@@ -30595,6 +30755,7 @@
30595
30755
  "piqRef": "B5.1.3",
30596
30756
  "sef25Ref": "W1.3",
30597
30757
  "title": "Damp proofing treatment",
30758
+ "ta6ed6Title": "Damp proofing",
30598
30759
  "type": "object",
30599
30760
  "properties": {
30600
30761
  "yesNo": {
@@ -30654,6 +30815,7 @@
30654
30815
  "ta6Ref": "5.1c",
30655
30816
  "piqRef": "B5.1.4",
30656
30817
  "title": "Timber rot or infestation treatment",
30818
+ "ta6ed6Title": "Timber treatment",
30657
30819
  "type": "object",
30658
30820
  "properties": {
30659
30821
  "yesNo": {
@@ -30773,6 +30935,7 @@
30773
30935
  "piqRef": "B5.1.6",
30774
30936
  "sef25Ref": "W1.8",
30775
30937
  "title": "Double glazing (windows, doors, roof lights, conservatory etc)",
30938
+ "ta6ed6Title": "Windows, roof lights, roof windows or glazed doors",
30776
30939
  "type": "object",
30777
30940
  "properties": {
30778
30941
  "yesNo": {
@@ -30921,6 +31084,7 @@
30921
31084
  "piqRef": "B5.1.8",
30922
31085
  "sef25Ref": "W1.6",
30923
31086
  "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
31087
+ "ta6ed6Title": "Underpinning",
30924
31088
  "type": "object",
30925
31089
  "properties": {
30926
31090
  "yesNo": {
@@ -31069,6 +31233,7 @@
31069
31233
  "piqRef": "B5.1.10",
31070
31234
  "sef25Ref": "W1.7",
31071
31235
  "title": "Other Guarantees or warranties",
31236
+ "ta6ed6Title": "Other (please state)",
31072
31237
  "type": "object",
31073
31238
  "properties": {
31074
31239
  "yesNo": {
@@ -31110,6 +31275,7 @@
31110
31275
  "ta6Ref": "5.1i2",
31111
31276
  "sef25Ref": "W1.7.2",
31112
31277
  "title": "Please provide details",
31278
+ "ta6ed6Title": "Please give details",
31113
31279
  "type": "string",
31114
31280
  "minLength": 1
31115
31281
  },
@@ -31137,6 +31303,7 @@
31137
31303
  "ta6Ref": "5.2",
31138
31304
  "piqRef": "B5.2",
31139
31305
  "title": "Are there any outstanding claims or current applications relating to any of the above?",
31306
+ "ta6ed6Title": "Are you aware of any claims under any of these guarantees or warranties?",
31140
31307
  "ta6Title": "Have any claims been made under any of these guarantees or warranties?",
31141
31308
  "type": "object",
31142
31309
  "properties": {
@@ -31182,6 +31349,7 @@
31182
31349
  "ta6ed6Ref": "6.2.2",
31183
31350
  "ta6Ref": "5.2.2",
31184
31351
  "title": "Please provide details",
31352
+ "ta6ed6Title": "Please give details",
31185
31353
  "type": "string",
31186
31354
  "minLength": 1
31187
31355
  },
@@ -31422,6 +31590,7 @@
31422
31590
  "ta6ed6Ref": "13.4",
31423
31591
  "piqRef": "B8.1",
31424
31592
  "title": "Other than the sellers, does anyone else aged 17 or over live at the property?",
31593
+ "ta6ed6Title": "Does anyone else, aged 17 or over, live at the property?",
31425
31594
  "type": "string",
31426
31595
  "enum": ["Yes", "No"]
31427
31596
  }
@@ -31448,8 +31617,8 @@
31448
31617
  "ta6Ref": "11.3",
31449
31618
  "ta6ed6Ref": "13.4a",
31450
31619
  "piqRef": "B8.1.1",
31451
- "ta6ed6Title": "(a) state the full names of any occupiers (other than the sellers) aged 17 or over:",
31452
31620
  "title": "Please provide their full names and ages.",
31621
+ "ta6ed6Title": "State the full names of any occupiers (other than the sellers) aged 17 or over",
31453
31622
  "type": "string",
31454
31623
  "minLength": 1
31455
31624
  },
@@ -31460,6 +31629,7 @@
31460
31629
  "ta6Ref": "11.4",
31461
31630
  "ta6ed6Ref": "13.4b",
31462
31631
  "title": "Are any of them tenants or lodgers?",
31632
+ "ta6ed6Title": "Are any of those occupiers who are aged 17 or over your tenants or lodgers?",
31463
31633
  "type": "object",
31464
31634
  "properties": {
31465
31635
  "yesNo": {
@@ -31495,6 +31665,7 @@
31495
31665
  "ta6Ref": "11.5.1",
31496
31666
  "type": "string",
31497
31667
  "title": "Is the property being sold with vacant possession?",
31668
+ "ta6ed6Title": "Is the property being sold with vacant possession (empty of all occupiers, rubbish and any contents or fittings not included in the sale)?",
31498
31669
  "description": "(empty of all occupiers, rubbish and any contents or fittings not included in the sale)",
31499
31670
  "enum": ["Yes", "No"]
31500
31671
  }
@@ -31522,6 +31693,7 @@
31522
31693
  "ta6ed6Ref": "13.7b",
31523
31694
  "baspi5Ref": "B6.2.4.3",
31524
31695
  "title": "If applicable please supply a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them.",
31696
+ "ta6ed6Title": "If the property is not being sold with vacant possession, provide details of all occupiers and copies of their tenancy agreements.",
31525
31697
  "type": "string",
31526
31698
  "enum": ["Attached", "To follow"]
31527
31699
  }
@@ -31567,6 +31739,7 @@
31567
31739
  "ta6Ref": "11.5b",
31568
31740
  "piqRef": "B8.2",
31569
31741
  "title": "Have all occupiers aged 17 or over, agreed to sign the sale contract to confirm that they will vacate the property prior to completion of the sale?",
31742
+ "ta6ed6Title": "Have all occupiers aged 17 or over agreed to sign the sale contract and to vacate the property on or before completion?",
31570
31743
  "type": "object",
31571
31744
  "properties": {
31572
31745
  "yesNo": {
@@ -31674,6 +31847,7 @@
31674
31847
  "ta6ed6Ref": "14",
31675
31848
  "nts2Ref": "A1.5.7",
31676
31849
  "title": "Completion and Moving",
31850
+ "ta6ed6Title": "Completion",
31677
31851
  "type": "object",
31678
31852
  "baspi4Required": [
31679
31853
  "sellerWillEnsure",
@@ -31707,7 +31881,6 @@
31707
31881
  "rdsRef": "RightsHolders/Flags",
31708
31882
  "ta6Ref": "14.4",
31709
31883
  "ta6ed6Ref": "14.2",
31710
- "ta6ed6Title": "Will you ensure that before or on completion:",
31711
31884
  "ta6ed6Required": [
31712
31885
  "removeRubbish",
31713
31886
  "replaceLightFittings",
@@ -31715,6 +31888,7 @@
31715
31888
  "leaveKeys"
31716
31889
  ],
31717
31890
  "title": "Please confirm that on completion you will:",
31891
+ "ta6ed6Title": "Will you ensure that before or on completion",
31718
31892
  "type": "object",
31719
31893
  "required": [
31720
31894
  "removeRubbish",
@@ -31729,8 +31903,8 @@
31729
31903
  "ta6Ref": "14.4a",
31730
31904
  "ta6ed6Ref": "14.2a",
31731
31905
  "piqRef": "B9.3",
31732
- "ta6ed6Title": "All rubbish is removed from the property (including from the loft, garden, outbuildings, garages and sheds) and that the property will be left in a clean and tidy condition?",
31733
31906
  "title": "Remove all rubbish and items not included in the sale from the property (including its garden, loft and any sheds or outbuildings) and leave the property in a clean and tidy condition.",
31907
+ "ta6ed6Title": "All rubbish is removed from the property (including from the loft, garden, outbuildings, garages and sheds) and that the property will be left in a clean and tidy condition?",
31734
31908
  "type": "boolean"
31735
31909
  },
31736
31910
  "replaceLightFittings": {
@@ -31739,8 +31913,8 @@
31739
31913
  "ta6Ref": "14.4b",
31740
31914
  "ta6ed6Ref": "14.2b",
31741
31915
  "piqRef": "B9.4",
31742
- "ta6ed6Title": "If light fittings are removed, the fittings will be replaced with ceiling rose, flex, bulb holder and bulb?",
31743
31916
  "title": "If light fittings are removed, the fittings will be replaced with ceiling rose, flex, bulb holder and bulb.",
31917
+ "ta6ed6Title": "If light fittings are removed, the fittings will be replaced with ceiling rose, flex, bulb holder and bulb?",
31744
31918
  "type": "boolean"
31745
31919
  },
31746
31920
  "takeReasonableCare": {
@@ -31749,8 +31923,8 @@
31749
31923
  "ta6Ref": "14.4c",
31750
31924
  "ta6ed6Ref": "14.2c",
31751
31925
  "piqRef": "B9.6",
31752
- "ta6ed6Title": "Reasonable care will be taken when removing any other fittings or contents?",
31753
31926
  "title": "Take reasonable care when removing any other fittings or contents.",
31927
+ "ta6ed6Title": "Reasonable care will be taken when removing any other fittings or contents?",
31754
31928
  "type": "boolean"
31755
31929
  },
31756
31930
  "leaveKeys": {
@@ -31759,8 +31933,8 @@
31759
31933
  "ta6Ref": "14.4d",
31760
31934
  "ta6ed6Ref": "14.2d",
31761
31935
  "piqRef": "B9.5",
31762
- "ta6ed6Title": "Keys to all windows and doors and details of codes for alarms and any other equipment will be left at the property or with the estate agent?",
31763
31936
  "title": "Leave keys for all door and window locks, along with any alarm codes, for the buyer on the day of completion.",
31937
+ "ta6ed6Title": "Keys to all windows and doors and details of codes for alarms and any other equipment will be left at the property or with the estate agent?",
31764
31938
  "type": "boolean"
31765
31939
  }
31766
31940
  }
@@ -31774,6 +31948,7 @@
31774
31948
  "piqRef": "B9.1",
31775
31949
  "nts2Ref": "A1.5.7.1",
31776
31950
  "title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
31951
+ "ta6ed6Title": "Does this sale depend on you completing the purchase of another property on the same day?",
31777
31952
  "ta6Title": "Is this sale dependent on the seller completing the purchase of another property on the same day?",
31778
31953
  "nts2Title": "Is this sale dependent on completion of the purchase of another property on the same day?",
31779
31954
  "type": "object",
@@ -31879,6 +32054,7 @@
31879
32054
  "ta6ed6Ref": "13.2",
31880
32055
  "piqRef": "B9.2",
31881
32056
  "title": "Are there any dates on which you cannot move?",
32057
+ "ta6ed6Title": "Do you have any special requirements about a moving date?",
31882
32058
  "description": "Note that: the moving date will not be fixed until contracts are exchanged i.e. have become binding, until then you should only make provisional removal arrangements; you do not need to be physically present on the day of completion so long as the property is cleared; timescales to completion vary depending on the complexity of the transaction, length of the chain and requirements of the people involved.",
31883
32059
  "type": "object",
31884
32060
  "properties": {
@@ -31915,6 +32091,7 @@
31915
32091
  },
31916
32092
  "details": {
31917
32093
  "title": "Please provide details",
32094
+ "ta6ed6Title": "Please give details",
31918
32095
  "baspi4Ref": "B7.3.2",
31919
32096
  "baspi5Ref": "B7.3.2",
31920
32097
  "ta6Ref": "14.2.2",
@@ -31987,6 +32164,7 @@
31987
32164
  "ta6Ref": "14.3",
31988
32165
  "ta6ed6Ref": "14.1",
31989
32166
  "title": "Will the sale price be sufficient to repay all mortgages and charges secured on the property?",
32167
+ "ta6ed6Title": "Will the sale price be sufficient to pay off on completion all mortgages and charges secured on the property?",
31990
32168
  "type": "object",
31991
32169
  "properties": {
31992
32170
  "yesNo": {
@@ -32002,8 +32180,9 @@
32002
32180
  "baspi4Required": ["yesNo"],
32003
32181
  "baspi5Required": ["yesNo"],
32004
32182
  "ta6Required": ["yesNo"],
32005
- "ta6ed6Required": ["yesNo"],
32006
- "ta6ed6Title": "Will the sale price be sufficient to pay off on completion all mortgages and charges secured on the property?"
32183
+ "ta6ed6Required": [
32184
+ "yesNo"
32185
+ ]
32007
32186
  }
32008
32187
  }
32009
32188
  },
@@ -32123,8 +32302,7 @@
32123
32302
  "hmlrReference",
32124
32303
  "registrationDate",
32125
32304
  "category",
32126
- "location",
32127
- "locationDominantBuilding"
32305
+ "location"
32128
32306
  ],
32129
32307
  "properties": {
32130
32308
  "hmlrReference": {