@pdtf/schemas 2.0.0-23 → 2.0.0-25

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.
@@ -1,14 +1,48 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "$id": "https://trust.propdata.org.uk/schemas/v2/overlays/ta6.json",
4
+ "required": [
5
+ "participants",
6
+ "propertyPack"
7
+ ],
4
8
  "properties": {
5
9
  "propertyPack": {
10
+ "ta6Ref": "-",
11
+ "title": "Property Pack",
12
+ "required": [
13
+ "materialFacts",
14
+ "additionalLegalInfo"
15
+ ],
6
16
  "properties": {
7
17
  "materialFacts": {
18
+ "required": [
19
+ "address",
20
+ "ownership",
21
+ "parking",
22
+ "listingAndConservation",
23
+ "typeOfConstruction",
24
+ "energyEfficiency",
25
+ "councilTax",
26
+ "disputesAndComplaints",
27
+ "alterationsAndChanges",
28
+ "notices",
29
+ "specialistIssues",
30
+ "waterAndDrainage",
31
+ "connectedUtilities",
32
+ "centralHeating",
33
+ "insurance",
34
+ "rightsAndInformalArrangements",
35
+ "environmentalIssues",
36
+ "additionalInformation"
37
+ ],
8
38
  "properties": {
9
39
  "address": {
10
40
  "ta6Ref": "0.1",
11
41
  "title": "Property Address",
42
+ "required": [
43
+ "line1",
44
+ "postcode"
45
+ ],
12
46
  "properties": {
13
47
  "line1": {
14
48
  "ta6Ref": "0.1.1",
@@ -32,9 +66,20 @@
32
66
  }
33
67
  }
34
68
  },
69
+ "media": {
70
+ "items": {
71
+ "required": [
72
+ "mediaUrl"
73
+ ]
74
+ }
75
+ },
35
76
  "parking": {
36
77
  "ta6Ref": "9",
37
78
  "title": "Parking",
79
+ "required": [
80
+ "parkingArrangements",
81
+ "controlledParking"
82
+ ],
38
83
  "properties": {
39
84
  "parkingArrangements": {
40
85
  "ta6Ref": "9.1",
@@ -65,20 +110,69 @@
65
110
  "enum": [
66
111
  "Other"
67
112
  ]
113
+ },
114
+ "otherParkingType": {
115
+ "ta6Ref": "9.1.2",
116
+ "title": "Please describe the other parking arrangements"
68
117
  }
69
- }
118
+ },
119
+ "required": [
120
+ "otherParkingType"
121
+ ]
70
122
  }
71
- ]
123
+ ],
124
+ "required": [
125
+ "parkingArrangementsType"
126
+ ],
127
+ "properties": {
128
+ "parkingArrangementsType": {
129
+ "ta6Ref": "9.1.1",
130
+ "title": "What type of parking arrangements are there?",
131
+ "enum": [
132
+ "Garage",
133
+ "Allocated parking space",
134
+ "Driveway",
135
+ "On street",
136
+ "Resident permit",
137
+ "Metered parking",
138
+ "Communal parking",
139
+ "None",
140
+ "Other"
141
+ ]
142
+ }
143
+ }
72
144
  },
73
145
  "controlledParking": {
74
146
  "ta6Ref": "9.2",
75
- "title": "Is the property in a controlled parking zone or within a local authority parking scheme?"
147
+ "title": "Is the property in a controlled parking zone or within a local authority parking scheme?",
148
+ "required": [
149
+ "yesNo"
150
+ ],
151
+ "properties": {
152
+ "yesNo": {
153
+ "ta6Ref": "9.2.1",
154
+ "enum": [
155
+ "Yes",
156
+ "No"
157
+ ]
158
+ }
159
+ }
160
+ },
161
+ "electricVehicleChargingPoint": {
162
+ "required": [
163
+ "yesNo"
164
+ ]
76
165
  }
77
166
  }
78
167
  },
79
168
  "listingAndConservation": {
80
169
  "ta6Ref": "4.7",
81
170
  "title": "Listing and Conservation",
171
+ "required": [
172
+ "isListed",
173
+ "isConservationArea",
174
+ "hasTreePreservationOrder"
175
+ ],
82
176
  "properties": {
83
177
  "isListed": {
84
178
  "ta6Ref": "4.7a",
@@ -102,10 +196,38 @@
102
196
  "enum": [
103
197
  "Yes"
104
198
  ]
199
+ },
200
+ "details": {
201
+ "ta6Ref": "4.7a2",
202
+ "title": "Please provide details of the listing and any relevant documents"
203
+ },
204
+ "attachments": {
205
+ "ta6Ref": "4.7a3",
206
+ "title": "Attachments",
207
+ "enum": [
208
+ "Attached",
209
+ "To follow"
210
+ ]
105
211
  }
106
- }
212
+ },
213
+ "required": [
214
+ "details",
215
+ "attachments"
216
+ ]
107
217
  }
108
- ]
218
+ ],
219
+ "required": [
220
+ "yesNo"
221
+ ],
222
+ "properties": {
223
+ "yesNo": {
224
+ "ta6Ref": "4.7a1",
225
+ "enum": [
226
+ "Yes",
227
+ "No"
228
+ ]
229
+ }
230
+ }
109
231
  },
110
232
  "isConservationArea": {
111
233
  "ta6Ref": "4.7b",
@@ -129,10 +251,38 @@
129
251
  "enum": [
130
252
  "Yes"
131
253
  ]
254
+ },
255
+ "details": {
256
+ "ta6Ref": "4.7b2",
257
+ "title": "Please provide details of the listing and any relevant documents"
258
+ },
259
+ "attachments": {
260
+ "ta6Ref": "4.7b3",
261
+ "title": "Attachments",
262
+ "enum": [
263
+ "Attached",
264
+ "To follow"
265
+ ]
132
266
  }
133
- }
267
+ },
268
+ "required": [
269
+ "details",
270
+ "attachments"
271
+ ]
134
272
  }
135
- ]
273
+ ],
274
+ "required": [
275
+ "yesNo"
276
+ ],
277
+ "properties": {
278
+ "yesNo": {
279
+ "ta6Ref": "4.7b1",
280
+ "enum": [
281
+ "Yes",
282
+ "No"
283
+ ]
284
+ }
285
+ }
136
286
  },
137
287
  "hasTreePreservationOrder": {
138
288
  "ta6Ref": "4.8",
@@ -157,6 +307,10 @@
157
307
  "Yes"
158
308
  ]
159
309
  },
310
+ "details": {
311
+ "ta6Ref": "4.8.2",
312
+ "title": "Details"
313
+ },
160
314
  "workCarriedOut": {
161
315
  "ta6Ref": "4.8a",
162
316
  "title": "Has work been carried out to any trees which are protected by the order?",
@@ -179,20 +333,73 @@
179
333
  "enum": [
180
334
  "Yes"
181
335
  ]
336
+ },
337
+ "details": {
338
+ "ta6Ref": "4.8a2",
339
+ "title": "Were the relevant consents obtained? Provide any relevant documentation",
340
+ "enum": [
341
+ "Yes",
342
+ "No"
343
+ ]
344
+ },
345
+ "attachments": {
346
+ "ta6Ref": "4.8a3",
347
+ "title": "Attachments",
348
+ "enum": [
349
+ "Attached",
350
+ "To follow"
351
+ ]
182
352
  }
183
- }
353
+ },
354
+ "required": [
355
+ "details"
356
+ ]
184
357
  }
185
- ]
358
+ ],
359
+ "required": [
360
+ "yesNo"
361
+ ],
362
+ "properties": {
363
+ "yesNo": {
364
+ "ta6Ref": "4.8a1",
365
+ "enum": [
366
+ "Yes",
367
+ "No"
368
+ ]
369
+ }
370
+ }
186
371
  }
187
372
  }
188
373
  }
189
- ]
374
+ ],
375
+ "required": [
376
+ "yesNo"
377
+ ],
378
+ "properties": {
379
+ "yesNo": {
380
+ "ta6Ref": "4.8.1",
381
+ "enum": [
382
+ "Yes",
383
+ "No"
384
+ ]
385
+ }
386
+ }
190
387
  }
191
388
  }
192
389
  },
193
390
  "energyEfficiency": {
391
+ "ta6Ref": "7.6",
392
+ "title": "Energy Efficiency",
393
+ "required": [
394
+ "certificate",
395
+ "greenDealLoan"
396
+ ],
194
397
  "properties": {
195
398
  "certificate": {
399
+ "ta6Ref": "7.6.1",
400
+ "required": [
401
+ "currentEnergyRating"
402
+ ],
196
403
  "properties": {
197
404
  "currentEnergyRating": {
198
405
  "ta6Ref": "7.6",
@@ -214,9 +421,14 @@
214
421
  }
215
422
  },
216
423
  "greenDealLoan": {
424
+ "ta6Ref": "7.7",
425
+ "title": "Green Deal Loan",
426
+ "required": [
427
+ "hasGreenDealLoan"
428
+ ],
217
429
  "properties": {
218
430
  "hasGreenDealLoan": {
219
- "ta6Ref": "7.7",
431
+ "ta6Ref": "7.7.1",
220
432
  "title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
221
433
  "discriminator": {
222
434
  "propertyName": "yesNo"
@@ -237,16 +449,50 @@
237
449
  "enum": [
238
450
  "Yes"
239
451
  ]
452
+ },
453
+ "details": {
454
+ "ta6Ref": "7.7.1.2",
455
+ "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"
456
+ },
457
+ "attachments": {
458
+ "ta6Ref": "7.7.1.3",
459
+ "title": "Attachments",
460
+ "enum": [
461
+ "Attached",
462
+ "To follow"
463
+ ]
240
464
  }
241
- }
465
+ },
466
+ "required": [
467
+ "details",
468
+ "attachments"
469
+ ]
242
470
  }
243
- ]
471
+ ],
472
+ "required": [
473
+ "yesNo"
474
+ ],
475
+ "properties": {
476
+ "yesNo": {
477
+ "ta6Ref": "7.7.1.1",
478
+ "enum": [
479
+ "Yes",
480
+ "No"
481
+ ]
482
+ }
483
+ }
244
484
  }
245
485
  }
246
486
  }
247
487
  }
248
488
  },
249
489
  "disputesAndComplaints": {
490
+ "ta6Ref": "2",
491
+ "title": "Disputes and Complaints",
492
+ "required": [
493
+ "hasDisputesAndComplaints",
494
+ "leadingToDisputesAndComplaints"
495
+ ],
250
496
  "properties": {
251
497
  "hasDisputesAndComplaints": {
252
498
  "ta6Ref": "2.1",
@@ -271,10 +517,29 @@
271
517
  "enum": [
272
518
  "Yes"
273
519
  ]
520
+ },
521
+ "details": {
522
+ "ta6Ref": "2.1.2",
523
+ "title": "Please give details"
274
524
  }
275
- }
525
+ },
526
+ "required": [
527
+ "details"
528
+ ]
276
529
  }
277
- ]
530
+ ],
531
+ "required": [
532
+ "yesNo"
533
+ ],
534
+ "properties": {
535
+ "yesNo": {
536
+ "ta6Ref": "2.1.1",
537
+ "enum": [
538
+ "Yes",
539
+ "No"
540
+ ]
541
+ }
542
+ }
278
543
  },
279
544
  "leadingToDisputesAndComplaints": {
280
545
  "ta6Ref": "2.2",
@@ -298,10 +563,29 @@
298
563
  "enum": [
299
564
  "Yes"
300
565
  ]
566
+ },
567
+ "details": {
568
+ "ta6Ref": "2.2.2",
569
+ "title": "Please give details"
301
570
  }
302
- }
571
+ },
572
+ "required": [
573
+ "details"
574
+ ]
303
575
  }
304
- ]
576
+ ],
577
+ "required": [
578
+ "yesNo"
579
+ ],
580
+ "properties": {
581
+ "yesNo": {
582
+ "ta6Ref": "2.2.1",
583
+ "enum": [
584
+ "Yes",
585
+ "No"
586
+ ]
587
+ }
588
+ }
305
589
  }
306
590
  }
307
591
  },
@@ -309,6 +593,15 @@
309
593
  "ta6Ref": "4.1",
310
594
  "title": "Alterations and Changes to the Property",
311
595
  "description": "Have any of the following changes been made to the whole or any part of the property (including the garden)?",
596
+ "required": [
597
+ "hasStructuralAlterations",
598
+ "changeOfUse",
599
+ "windowReplacementsSince2002",
600
+ "hasAddedConservatory",
601
+ "worksUnfinished",
602
+ "planningPermissionBreaches",
603
+ "unresolvedPlanningIssues"
604
+ ],
312
605
  "properties": {
313
606
  "hasStructuralAlterations": {
314
607
  "ta6Ref": "4.1a",
@@ -334,7 +627,7 @@
334
627
  ]
335
628
  },
336
629
  "details": {
337
- "ta6Ref": "4.1a1",
630
+ "ta6Ref": "4.1a2",
338
631
  "title": "Please give details including dates of all work undertaken"
339
632
  },
340
633
  "buildingRegApproval": {
@@ -352,14 +645,17 @@
352
645
  ]
353
646
  },
354
647
  "attachments": {
355
- "ta6Ref": "4.2.2",
648
+ "ta6Ref": "4.2a",
356
649
  "title": "Please provide a copy of the documents",
357
650
  "enum": [
358
651
  "Attached",
359
652
  "To follow"
360
653
  ]
361
654
  }
362
- }
655
+ },
656
+ "required": [
657
+ "attachments"
658
+ ]
363
659
  },
364
660
  {
365
661
  "properties": {
@@ -370,13 +666,19 @@
370
666
  ]
371
667
  },
372
668
  "details": {
373
- "ta6Ref": "4.2.3",
669
+ "ta6Ref": "4.2b",
374
670
  "title": "Please outline the reasons why",
375
671
  "description": "e.g. the work was exempt from Building Regulations"
376
672
  }
377
- }
673
+ },
674
+ "required": [
675
+ "details"
676
+ ]
378
677
  }
379
678
  ],
679
+ "required": [
680
+ "yesNo"
681
+ ],
380
682
  "properties": {
381
683
  "yesNo": {
382
684
  "ta6Ref": "4.2.1",
@@ -403,14 +705,17 @@
403
705
  ]
404
706
  },
405
707
  "attachments": {
406
- "ta6Ref": "4.2.2",
708
+ "ta6Ref": "4.2a",
407
709
  "title": "Please provide a copy of the documents",
408
710
  "enum": [
409
711
  "Attached",
410
712
  "To follow"
411
713
  ]
412
714
  }
413
- }
715
+ },
716
+ "required": [
717
+ "attachments"
718
+ ]
414
719
  },
415
720
  {
416
721
  "properties": {
@@ -421,17 +726,40 @@
421
726
  ]
422
727
  },
423
728
  "details": {
424
- "ta6Ref": "4.2.3",
729
+ "ta6Ref": "4.2b",
425
730
  "title": "Please outline the reasons why",
426
731
  "description": "e.g. permitted development rights applied"
427
732
  }
428
- }
733
+ },
734
+ "required": [
735
+ "details"
736
+ ]
737
+ }
738
+ ],
739
+ "required": [
740
+ "yesNo"
741
+ ]
742
+ },
743
+ "listedBuildingConsent": {
744
+ "oneOf": [
745
+ {
746
+ "required": [
747
+ "attachments"
748
+ ]
429
749
  }
430
750
  ]
431
751
  }
432
- }
752
+ },
753
+ "required": [
754
+ "details",
755
+ "buildingRegApproval",
756
+ "planningPermission"
757
+ ]
433
758
  }
434
759
  ],
760
+ "required": [
761
+ "yesNo"
762
+ ],
435
763
  "properties": {
436
764
  "yesNo": {
437
765
  "ta6Ref": "4.1a1",
@@ -465,6 +793,10 @@
465
793
  "Yes"
466
794
  ]
467
795
  },
796
+ "yearCompleted": {
797
+ "ta6Ref": "4.1b2",
798
+ "title": "What year was the change completed?"
799
+ },
468
800
  "buildingRegApproval": {
469
801
  "ta6Ref": "4.2",
470
802
  "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
@@ -480,14 +812,17 @@
480
812
  ]
481
813
  },
482
814
  "attachments": {
483
- "ta6Ref": "4.2.2",
815
+ "ta6Ref": "4.2a",
484
816
  "title": "Please provide a copy of the documents",
485
817
  "enum": [
486
818
  "Attached",
487
819
  "To follow"
488
820
  ]
489
821
  }
490
- }
822
+ },
823
+ "required": [
824
+ "attachments"
825
+ ]
491
826
  },
492
827
  {
493
828
  "properties": {
@@ -498,13 +833,19 @@
498
833
  ]
499
834
  },
500
835
  "details": {
501
- "ta6Ref": "4.2.3",
836
+ "ta6Ref": "4.2b",
502
837
  "title": "Please outline the reasons why",
503
838
  "description": "e.g. the work was exempt from Building Regulations"
504
839
  }
505
- }
840
+ },
841
+ "required": [
842
+ "details"
843
+ ]
506
844
  }
507
845
  ],
846
+ "required": [
847
+ "yesNo"
848
+ ],
508
849
  "properties": {
509
850
  "yesNo": {
510
851
  "ta6Ref": "4.2.1",
@@ -531,14 +872,17 @@
531
872
  ]
532
873
  },
533
874
  "attachments": {
534
- "ta6Ref": "4.2.2",
875
+ "ta6Ref": "4.2a",
535
876
  "title": "Please provide a copy of the documents",
536
877
  "enum": [
537
878
  "Attached",
538
879
  "To follow"
539
880
  ]
540
881
  }
541
- }
882
+ },
883
+ "required": [
884
+ "attachments"
885
+ ]
542
886
  },
543
887
  {
544
888
  "properties": {
@@ -549,13 +893,19 @@
549
893
  ]
550
894
  },
551
895
  "details": {
552
- "ta6Ref": "4.2.3",
896
+ "ta6Ref": "4.2b",
553
897
  "title": "Please outline the reasons why",
554
898
  "description": "e.g. permitted development rights applied"
555
899
  }
556
- }
900
+ },
901
+ "required": [
902
+ "details"
903
+ ]
557
904
  }
558
905
  ],
906
+ "required": [
907
+ "yesNo"
908
+ ],
559
909
  "properties": {
560
910
  "yesNo": {
561
911
  "ta6Ref": "4.2.1",
@@ -566,38 +916,27 @@
566
916
  ]
567
917
  }
568
918
  }
569
- },
570
- "listedBuildingConsent": {
571
- "ta6Ref": "4.2",
572
- "title": "Was listed building consent obtained?",
573
- "discriminator": {
574
- "propertyName": "yesNo"
575
- },
576
- "oneOf": [
577
- {
578
- "properties": {
579
- "yesNo": {
580
- "enum": [
581
- "Yes"
582
- ]
583
- }
584
- }
585
- },
586
- {
587
- "properties": {
588
- "yesNo": {
589
- "enum": [
590
- "No",
591
- "Not required"
592
- ]
593
- }
594
- }
595
- }
596
- ]
597
919
  }
598
- }
920
+ },
921
+ "required": [
922
+ "yearCompleted",
923
+ "buildingRegApproval",
924
+ "planningPermission"
925
+ ]
599
926
  }
600
- ]
927
+ ],
928
+ "required": [
929
+ "yesNo"
930
+ ],
931
+ "properties": {
932
+ "yesNo": {
933
+ "ta6Ref": "4.1b1",
934
+ "enum": [
935
+ "Yes",
936
+ "No"
937
+ ]
938
+ }
939
+ }
601
940
  },
602
941
  "windowReplacementsSince2002": {
603
942
  "ta6Ref": "4.1c",
@@ -622,6 +961,10 @@
622
961
  "Yes"
623
962
  ]
624
963
  },
964
+ "yearCompleted": {
965
+ "ta6Ref": "4.1c2",
966
+ "title": "What year was the installation completed?"
967
+ },
625
968
  "buildingRegApproval": {
626
969
  "ta6Ref": "4.2",
627
970
  "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
@@ -637,14 +980,17 @@
637
980
  ]
638
981
  },
639
982
  "attachments": {
640
- "ta6Ref": "4.2.2",
983
+ "ta6Ref": "4.2a",
641
984
  "title": "Please provide a copy of the documents",
642
985
  "enum": [
643
986
  "Attached",
644
987
  "To follow"
645
988
  ]
646
989
  }
647
- }
990
+ },
991
+ "required": [
992
+ "attachments"
993
+ ]
648
994
  },
649
995
  {
650
996
  "properties": {
@@ -655,13 +1001,19 @@
655
1001
  ]
656
1002
  },
657
1003
  "details": {
658
- "ta6Ref": "4.2.3",
1004
+ "ta6Ref": "4.2b",
659
1005
  "title": "Please outline the reasons why",
660
1006
  "description": "e.g. the work was exempt from Building Regulations"
661
1007
  }
662
- }
1008
+ },
1009
+ "required": [
1010
+ "details"
1011
+ ]
663
1012
  }
664
1013
  ],
1014
+ "required": [
1015
+ "yesNo"
1016
+ ],
665
1017
  "properties": {
666
1018
  "yesNo": {
667
1019
  "ta6Ref": "4.2.1",
@@ -688,14 +1040,17 @@
688
1040
  ]
689
1041
  },
690
1042
  "attachments": {
691
- "ta6Ref": "4.2.2",
1043
+ "ta6Ref": "4.2a",
692
1044
  "title": "Please provide a copy of the documents",
693
1045
  "enum": [
694
1046
  "Attached",
695
1047
  "To follow"
696
1048
  ]
697
1049
  }
698
- }
1050
+ },
1051
+ "required": [
1052
+ "attachments"
1053
+ ]
699
1054
  },
700
1055
  {
701
1056
  "properties": {
@@ -706,13 +1061,19 @@
706
1061
  ]
707
1062
  },
708
1063
  "details": {
709
- "ta6Ref": "4.2.3",
1064
+ "ta6Ref": "4.2b",
710
1065
  "title": "Please outline the reasons why",
711
1066
  "description": "e.g. permitted development rights applied"
712
1067
  }
713
- }
1068
+ },
1069
+ "required": [
1070
+ "details"
1071
+ ]
714
1072
  }
715
1073
  ],
1074
+ "required": [
1075
+ "yesNo"
1076
+ ],
716
1077
  "properties": {
717
1078
  "yesNo": {
718
1079
  "ta6Ref": "4.2.1",
@@ -723,23 +1084,27 @@
723
1084
  ]
724
1085
  }
725
1086
  }
726
- },
727
- "listedBuildingConsent": {
728
- "oneOf": [
729
- null,
730
- {
731
- "properties": {
732
- "details": {
733
- "ta6Ref": "4.2.3",
734
- "title": "Please outline the reasons why"
735
- }
736
- }
737
- }
738
- ]
739
1087
  }
740
- }
1088
+ },
1089
+ "required": [
1090
+ "yearCompleted",
1091
+ "buildingRegApproval",
1092
+ "planningPermission"
1093
+ ]
741
1094
  }
742
- ]
1095
+ ],
1096
+ "required": [
1097
+ "yesNo"
1098
+ ],
1099
+ "properties": {
1100
+ "yesNo": {
1101
+ "ta6Ref": "4.1c1",
1102
+ "enum": [
1103
+ "Yes",
1104
+ "No"
1105
+ ]
1106
+ }
1107
+ }
743
1108
  },
744
1109
  "hasAddedConservatory": {
745
1110
  "ta6Ref": "4.1d",
@@ -764,6 +1129,10 @@
764
1129
  "Yes"
765
1130
  ]
766
1131
  },
1132
+ "yearCompleted": {
1133
+ "ta6Ref": "4.1d2",
1134
+ "title": "What year was the installation completed?"
1135
+ },
767
1136
  "buildingRegApproval": {
768
1137
  "ta6Ref": "4.2",
769
1138
  "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
@@ -779,14 +1148,17 @@
779
1148
  ]
780
1149
  },
781
1150
  "attachments": {
782
- "ta6Ref": "4.2.2",
1151
+ "ta6Ref": "4.2a",
783
1152
  "title": "Please provide a copy of the documents",
784
1153
  "enum": [
785
1154
  "Attached",
786
1155
  "To follow"
787
1156
  ]
788
1157
  }
789
- }
1158
+ },
1159
+ "required": [
1160
+ "attachments"
1161
+ ]
790
1162
  },
791
1163
  {
792
1164
  "properties": {
@@ -797,13 +1169,19 @@
797
1169
  ]
798
1170
  },
799
1171
  "details": {
800
- "ta6Ref": "4.2.3",
1172
+ "ta6Ref": "4.2b",
801
1173
  "title": "Please outline the reasons why",
802
1174
  "description": "e.g. the work was exempt from Building Regulations"
803
1175
  }
804
- }
1176
+ },
1177
+ "required": [
1178
+ "details"
1179
+ ]
805
1180
  }
806
1181
  ],
1182
+ "required": [
1183
+ "yesNo"
1184
+ ],
807
1185
  "properties": {
808
1186
  "yesNo": {
809
1187
  "ta6Ref": "4.2.1",
@@ -830,14 +1208,17 @@
830
1208
  ]
831
1209
  },
832
1210
  "attachments": {
833
- "ta6Ref": "4.2.2",
1211
+ "ta6Ref": "4.2a",
834
1212
  "title": "Please provide a copy of the documents",
835
1213
  "enum": [
836
1214
  "Attached",
837
1215
  "To follow"
838
1216
  ]
839
1217
  }
840
- }
1218
+ },
1219
+ "required": [
1220
+ "attachments"
1221
+ ]
841
1222
  },
842
1223
  {
843
1224
  "properties": {
@@ -848,13 +1229,19 @@
848
1229
  ]
849
1230
  },
850
1231
  "details": {
851
- "ta6Ref": "4.2.3",
1232
+ "ta6Ref": "4.2b",
852
1233
  "title": "Please outline the reasons why",
853
1234
  "description": "e.g. permitted development rights applied"
854
1235
  }
855
- }
1236
+ },
1237
+ "required": [
1238
+ "details"
1239
+ ]
856
1240
  }
857
1241
  ],
1242
+ "required": [
1243
+ "yesNo"
1244
+ ],
858
1245
  "properties": {
859
1246
  "yesNo": {
860
1247
  "ta6Ref": "4.2.1",
@@ -865,66 +1252,27 @@
865
1252
  ]
866
1253
  }
867
1254
  }
868
- },
869
- "listedBuildingConsent": {
870
- "ta6Ref": "4.2",
871
- "title": "Was listed building consent obtained?",
872
- "discriminator": {
873
- "propertyName": "yesNo"
874
- },
875
- "oneOf": [
876
- {
877
- "properties": {
878
- "yesNo": {
879
- "enum": [
880
- "Yes"
881
- ]
882
- }
883
- }
884
- },
885
- {
886
- "properties": {
887
- "yesNo": {
888
- "enum": [
889
- "No",
890
- "Not required"
891
- ]
892
- }
893
- }
894
- }
895
- ]
896
- },
897
- "deedRestrictionConsent": {
898
- "ta6Ref": "4.2",
899
- "title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
900
- "discriminator": {
901
- "propertyName": "yesNo"
902
- },
903
- "oneOf": [
904
- {
905
- "properties": {
906
- "yesNo": {
907
- "enum": [
908
- "Yes"
909
- ]
910
- }
911
- }
912
- },
913
- {
914
- "properties": {
915
- "yesNo": {
916
- "enum": [
917
- "No",
918
- "Not required"
919
- ]
920
- }
921
- }
922
- }
923
- ]
924
1255
  }
925
- }
1256
+ },
1257
+ "required": [
1258
+ "yearCompleted",
1259
+ "buildingRegApproval",
1260
+ "planningPermission"
1261
+ ]
926
1262
  }
927
- ]
1263
+ ],
1264
+ "required": [
1265
+ "yesNo"
1266
+ ],
1267
+ "properties": {
1268
+ "yesNo": {
1269
+ "ta6Ref": "4.1d1",
1270
+ "enum": [
1271
+ "Yes",
1272
+ "No"
1273
+ ]
1274
+ }
1275
+ }
928
1276
  },
929
1277
  "worksUnfinished": {
930
1278
  "ta6Ref": "4.3",
@@ -948,10 +1296,29 @@
948
1296
  "enum": [
949
1297
  "Yes"
950
1298
  ]
1299
+ },
1300
+ "details": {
1301
+ "ta6Ref": "4.3.2",
1302
+ "title": "Please provide details and explain why"
951
1303
  }
952
- }
1304
+ },
1305
+ "required": [
1306
+ "details"
1307
+ ]
953
1308
  }
954
- ]
1309
+ ],
1310
+ "required": [
1311
+ "yesNo"
1312
+ ],
1313
+ "properties": {
1314
+ "yesNo": {
1315
+ "ta6Ref": "4.3.1",
1316
+ "enum": [
1317
+ "Yes",
1318
+ "No"
1319
+ ]
1320
+ }
1321
+ }
955
1322
  },
956
1323
  "planningPermissionBreaches": {
957
1324
  "ta6Ref": "4.4",
@@ -975,10 +1342,29 @@
975
1342
  "enum": [
976
1343
  "Yes"
977
1344
  ]
1345
+ },
1346
+ "details": {
1347
+ "ta6Ref": "4.4.2",
1348
+ "title": "Please give details"
978
1349
  }
979
- }
1350
+ },
1351
+ "required": [
1352
+ "details"
1353
+ ]
980
1354
  }
981
- ]
1355
+ ],
1356
+ "required": [
1357
+ "yesNo"
1358
+ ],
1359
+ "properties": {
1360
+ "yesNo": {
1361
+ "ta6Ref": "4.4.1",
1362
+ "enum": [
1363
+ "Yes",
1364
+ "No"
1365
+ ]
1366
+ }
1367
+ }
982
1368
  },
983
1369
  "unresolvedPlanningIssues": {
984
1370
  "ta6Ref": "4.5",
@@ -1002,10 +1388,29 @@
1002
1388
  "enum": [
1003
1389
  "Yes"
1004
1390
  ]
1391
+ },
1392
+ "details": {
1393
+ "ta6Ref": "4.5.2",
1394
+ "title": "Please give details"
1005
1395
  }
1006
- }
1396
+ },
1397
+ "required": [
1398
+ "details"
1399
+ ]
1007
1400
  }
1008
- ]
1401
+ ],
1402
+ "required": [
1403
+ "yesNo"
1404
+ ],
1405
+ "properties": {
1406
+ "yesNo": {
1407
+ "ta6Ref": "4.5.1",
1408
+ "enum": [
1409
+ "Yes",
1410
+ "No"
1411
+ ]
1412
+ }
1413
+ }
1009
1414
  }
1010
1415
  }
1011
1416
  },
@@ -1013,9 +1418,18 @@
1013
1418
  "ta6Ref": "3",
1014
1419
  "title": "Notices which Affect the Property",
1015
1420
  "description": "Are you aware of, or have you received, any of the following notices?",
1421
+ "required": [
1422
+ "neighbourDevelopment",
1423
+ "planningApplication",
1424
+ "requiredMaintenance",
1425
+ "listedBuildingApplication",
1426
+ "infrastructureProject",
1427
+ "partyWallAct",
1428
+ "otherNotices"
1429
+ ],
1016
1430
  "properties": {
1017
1431
  "neighbourDevelopment": {
1018
- "ta6Ref": "3.1",
1432
+ "ta6Ref": "3.2",
1019
1433
  "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
1020
1434
  "discriminator": {
1021
1435
  "propertyName": "yesNo"
@@ -1036,13 +1450,32 @@
1036
1450
  "enum": [
1037
1451
  "Yes"
1038
1452
  ]
1453
+ },
1454
+ "details": {
1455
+ "ta6Ref": "3.2.2",
1456
+ "title": "Details"
1039
1457
  }
1040
- }
1458
+ },
1459
+ "required": [
1460
+ "details"
1461
+ ]
1041
1462
  }
1042
- ]
1463
+ ],
1464
+ "required": [
1465
+ "yesNo"
1466
+ ],
1467
+ "properties": {
1468
+ "yesNo": {
1469
+ "ta6Ref": "3.2.1",
1470
+ "enum": [
1471
+ "Yes",
1472
+ "No"
1473
+ ]
1474
+ }
1475
+ }
1043
1476
  },
1044
1477
  "planningApplication": {
1045
- "ta6Ref": "3.2",
1478
+ "ta6Ref": "3.1",
1046
1479
  "title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
1047
1480
  "discriminator": {
1048
1481
  "propertyName": "yesNo"
@@ -1063,10 +1496,29 @@
1063
1496
  "enum": [
1064
1497
  "Yes"
1065
1498
  ]
1499
+ },
1500
+ "details": {
1501
+ "ta6Ref": "3.1.2",
1502
+ "title": "Details"
1066
1503
  }
1067
- }
1504
+ },
1505
+ "required": [
1506
+ "details"
1507
+ ]
1068
1508
  }
1069
- ]
1509
+ ],
1510
+ "required": [
1511
+ "yesNo"
1512
+ ],
1513
+ "properties": {
1514
+ "yesNo": {
1515
+ "ta6Ref": "3.1.1",
1516
+ "enum": [
1517
+ "Yes",
1518
+ "No"
1519
+ ]
1520
+ }
1521
+ }
1070
1522
  },
1071
1523
  "requiredMaintenance": {
1072
1524
  "ta6Ref": "3.1",
@@ -1090,10 +1542,29 @@
1090
1542
  "enum": [
1091
1543
  "Yes"
1092
1544
  ]
1545
+ },
1546
+ "details": {
1547
+ "ta6Ref": "3.1.2",
1548
+ "title": "Details"
1093
1549
  }
1094
- }
1550
+ },
1551
+ "required": [
1552
+ "details"
1553
+ ]
1095
1554
  }
1096
- ]
1555
+ ],
1556
+ "required": [
1557
+ "yesNo"
1558
+ ],
1559
+ "properties": {
1560
+ "yesNo": {
1561
+ "ta6Ref": "3.1.1",
1562
+ "enum": [
1563
+ "Yes",
1564
+ "No"
1565
+ ]
1566
+ }
1567
+ }
1097
1568
  },
1098
1569
  "listedBuildingApplication": {
1099
1570
  "ta6Ref": "3.1",
@@ -1117,10 +1588,29 @@
1117
1588
  "enum": [
1118
1589
  "Yes"
1119
1590
  ]
1591
+ },
1592
+ "details": {
1593
+ "ta6Ref": "3.1.2",
1594
+ "title": "Details"
1120
1595
  }
1121
- }
1596
+ },
1597
+ "required": [
1598
+ "details"
1599
+ ]
1122
1600
  }
1123
- ]
1601
+ ],
1602
+ "required": [
1603
+ "yesNo"
1604
+ ],
1605
+ "properties": {
1606
+ "yesNo": {
1607
+ "ta6Ref": "3.1.1",
1608
+ "enum": [
1609
+ "Yes",
1610
+ "No"
1611
+ ]
1612
+ }
1613
+ }
1124
1614
  },
1125
1615
  "infrastructureProject": {
1126
1616
  "ta6Ref": "3.1",
@@ -1144,10 +1634,29 @@
1144
1634
  "enum": [
1145
1635
  "Yes"
1146
1636
  ]
1637
+ },
1638
+ "details": {
1639
+ "ta6Ref": "3.1.2",
1640
+ "title": "Details"
1147
1641
  }
1148
- }
1642
+ },
1643
+ "required": [
1644
+ "details"
1645
+ ]
1149
1646
  }
1150
- ]
1647
+ ],
1648
+ "required": [
1649
+ "yesNo"
1650
+ ],
1651
+ "properties": {
1652
+ "yesNo": {
1653
+ "ta6Ref": "3.1.1",
1654
+ "enum": [
1655
+ "Yes",
1656
+ "No"
1657
+ ]
1658
+ }
1659
+ }
1151
1660
  },
1152
1661
  "partyWallAct": {
1153
1662
  "ta6Ref": "1.6",
@@ -1171,10 +1680,37 @@
1171
1680
  "enum": [
1172
1681
  "Yes"
1173
1682
  ]
1683
+ },
1684
+ "details": {
1685
+ "ta6Ref": "1.6.2",
1686
+ "title": "Details"
1687
+ },
1688
+ "attachments": {
1689
+ "ta6Ref": "1.6.3",
1690
+ "title": "Attachments",
1691
+ "enum": [
1692
+ "Attached",
1693
+ "To follow"
1694
+ ]
1174
1695
  }
1175
- }
1696
+ },
1697
+ "required": [
1698
+ "details"
1699
+ ]
1176
1700
  }
1177
- ]
1701
+ ],
1702
+ "required": [
1703
+ "yesNo"
1704
+ ],
1705
+ "properties": {
1706
+ "yesNo": {
1707
+ "ta6Ref": "1.6.1",
1708
+ "enum": [
1709
+ "Yes",
1710
+ "No"
1711
+ ]
1712
+ }
1713
+ }
1178
1714
  },
1179
1715
  "otherNotices": {
1180
1716
  "ta6Ref": "3.1",
@@ -1198,14 +1734,36 @@
1198
1734
  "enum": [
1199
1735
  "Yes"
1200
1736
  ]
1737
+ },
1738
+ "details": {
1739
+ "ta6Ref": "3.1.2",
1740
+ "title": "Details"
1201
1741
  }
1202
- }
1742
+ },
1743
+ "required": [
1744
+ "details"
1745
+ ]
1203
1746
  }
1204
- ]
1747
+ ],
1748
+ "required": [
1749
+ "yesNo"
1750
+ ],
1751
+ "properties": {
1752
+ "yesNo": {
1753
+ "ta6Ref": "3.1.1",
1754
+ "enum": [
1755
+ "Yes",
1756
+ "No"
1757
+ ]
1758
+ }
1759
+ }
1205
1760
  }
1206
1761
  }
1207
1762
  },
1208
1763
  "specialistIssues": {
1764
+ "required": [
1765
+ "japaneseKnotweed"
1766
+ ],
1209
1767
  "properties": {
1210
1768
  "japaneseKnotweed": {
1211
1769
  "ta6Ref": "7.8",
@@ -1229,10 +1787,38 @@
1229
1787
  "enum": [
1230
1788
  "Yes"
1231
1789
  ]
1790
+ },
1791
+ "details": {
1792
+ "ta6Ref": "7.8.2",
1793
+ "title": "Please provide details,state whether there is a management plan in place and attach a copy"
1794
+ },
1795
+ "attachments": {
1796
+ "ta6Ref": "7.8.3",
1797
+ "title": "Attachments",
1798
+ "enum": [
1799
+ "Attached",
1800
+ "To follow"
1801
+ ]
1232
1802
  }
1233
- }
1803
+ },
1804
+ "required": [
1805
+ "details",
1806
+ "attachments"
1807
+ ]
1234
1808
  }
1235
- ]
1809
+ ],
1810
+ "required": [
1811
+ "yesNo"
1812
+ ],
1813
+ "properties": {
1814
+ "yesNo": {
1815
+ "ta6Ref": "7.8.1",
1816
+ "enum": [
1817
+ "Yes",
1818
+ "No"
1819
+ ]
1820
+ }
1821
+ }
1236
1822
  }
1237
1823
  }
1238
1824
  },
@@ -1240,6 +1826,12 @@
1240
1826
  "ta6Ref": "13",
1241
1827
  "title": "Connected utilities",
1242
1828
  "description": "Please indicate which utilities are are connected to the property.",
1829
+ "required": [
1830
+ "mainsElectricity",
1831
+ "mainsGas",
1832
+ "telephone",
1833
+ "cableSatelliteTV"
1834
+ ],
1243
1835
  "properties": {
1244
1836
  "mainsElectricity": {
1245
1837
  "ta6Ref": "13.1",
@@ -1263,8 +1855,15 @@
1263
1855
  "enum": [
1264
1856
  "Yes"
1265
1857
  ]
1858
+ },
1859
+ "supplier": {
1860
+ "ta6Ref": "13.2.1",
1861
+ "title": "Supplier"
1266
1862
  }
1267
- }
1863
+ },
1864
+ "required": [
1865
+ "supplier"
1866
+ ]
1268
1867
  },
1269
1868
  {
1270
1869
  "properties": {
@@ -1272,10 +1871,27 @@
1272
1871
  "enum": [
1273
1872
  "To be connected"
1274
1873
  ]
1874
+ },
1875
+ "supplier": {
1876
+ "ta6Ref": "13.1.2",
1877
+ "title": "Supplier"
1275
1878
  }
1276
1879
  }
1277
1880
  }
1278
- ]
1881
+ ],
1882
+ "required": [
1883
+ "yesNo"
1884
+ ],
1885
+ "properties": {
1886
+ "yesNo": {
1887
+ "ta6Ref": "13.1.1",
1888
+ "enum": [
1889
+ "Yes",
1890
+ "To be connected",
1891
+ "No"
1892
+ ]
1893
+ }
1894
+ }
1279
1895
  },
1280
1896
  "mainsGas": {
1281
1897
  "ta6Ref": "13.2",
@@ -1299,8 +1915,15 @@
1299
1915
  "enum": [
1300
1916
  "Yes"
1301
1917
  ]
1918
+ },
1919
+ "supplier": {
1920
+ "ta6Ref": "13.2.1",
1921
+ "title": "Supplier"
1302
1922
  }
1303
- }
1923
+ },
1924
+ "required": [
1925
+ "supplier"
1926
+ ]
1304
1927
  },
1305
1928
  {
1306
1929
  "properties": {
@@ -1311,7 +1934,20 @@
1311
1934
  }
1312
1935
  }
1313
1936
  }
1314
- ]
1937
+ ],
1938
+ "required": [
1939
+ "yesNo"
1940
+ ],
1941
+ "properties": {
1942
+ "yesNo": {
1943
+ "ta6Ref": "13.2.1",
1944
+ "enum": [
1945
+ "Yes",
1946
+ "To be connected",
1947
+ "No"
1948
+ ]
1949
+ }
1950
+ }
1315
1951
  },
1316
1952
  "telephone": {
1317
1953
  "ta6Ref": "13.5",
@@ -1335,8 +1971,15 @@
1335
1971
  "enum": [
1336
1972
  "Yes"
1337
1973
  ]
1974
+ },
1975
+ "supplier": {
1976
+ "ta6Ref": "13.2",
1977
+ "title": "Supplier"
1338
1978
  }
1339
- }
1979
+ },
1980
+ "required": [
1981
+ "supplier"
1982
+ ]
1340
1983
  },
1341
1984
  {
1342
1985
  "properties": {
@@ -1347,7 +1990,20 @@
1347
1990
  }
1348
1991
  }
1349
1992
  }
1350
- ]
1993
+ ],
1994
+ "required": [
1995
+ "yesNo"
1996
+ ],
1997
+ "properties": {
1998
+ "yesNo": {
1999
+ "ta6Ref": "13.5.1",
2000
+ "enum": [
2001
+ "Yes",
2002
+ "To be connected",
2003
+ "No"
2004
+ ]
2005
+ }
2006
+ }
1351
2007
  },
1352
2008
  "cableSatelliteTV": {
1353
2009
  "ta6Ref": "13.6",
@@ -1371,8 +2027,15 @@
1371
2027
  "enum": [
1372
2028
  "Yes"
1373
2029
  ]
2030
+ },
2031
+ "supplier": {
2032
+ "ta6Ref": "13.6.2",
2033
+ "title": "Supplier"
1374
2034
  }
1375
- }
2035
+ },
2036
+ "required": [
2037
+ "supplier"
2038
+ ]
1376
2039
  },
1377
2040
  {
1378
2041
  "properties": {
@@ -1383,43 +2046,20 @@
1383
2046
  }
1384
2047
  }
1385
2048
  }
1386
- ]
1387
- },
1388
- "solarPanels": {
1389
- "ta6Ref": "4.6",
1390
- "title": "Solar or photovoltaic panels",
1391
- "discriminator": {
1392
- "propertyName": "yesNo"
1393
- },
1394
- "oneOf": [
1395
- {
1396
- "properties": {
1397
- "yesNo": {
1398
- "enum": [
1399
- "No"
1400
- ]
1401
- }
1402
- }
1403
- },
1404
- {
1405
- "properties": {
1406
- "yesNo": {
1407
- "enum": [
1408
- "Yes"
1409
- ]
1410
- }
1411
- }
1412
- },
1413
- {
1414
- "properties": {
1415
- "yesNo": {
1416
- "enum": [
1417
- "To be connected"
1418
- ]
1419
- }
1420
- }
2049
+ ],
2050
+ "required": [
2051
+ "yesNo"
2052
+ ],
2053
+ "properties": {
2054
+ "yesNo": {
2055
+ "ta6Ref": "13.6.1",
2056
+ "enum": [
2057
+ "Yes",
2058
+ "To be connected",
2059
+ "No"
2060
+ ]
1421
2061
  }
1422
- ]
2062
+ }
1423
2063
  }
1424
2064
  }
1425
2065
  },
@@ -1427,8 +2067,17 @@
1427
2067
  "ta6Ref": "13",
1428
2068
  "title": "Water and Drainage",
1429
2069
  "description": "Please describe the water and drainage services that are connected to the property.",
2070
+ "required": [
2071
+ "water",
2072
+ "drainage"
2073
+ ],
1430
2074
  "properties": {
1431
2075
  "water": {
2076
+ "ta6Ref": "13",
2077
+ "title": "Water",
2078
+ "required": [
2079
+ "mainsWater"
2080
+ ],
1432
2081
  "properties": {
1433
2082
  "mainsWater": {
1434
2083
  "ta6Ref": "13.3",
@@ -1452,8 +2101,15 @@
1452
2101
  "enum": [
1453
2102
  "Yes"
1454
2103
  ]
2104
+ },
2105
+ "supplier": {
2106
+ "ta6Ref": "13.3.2",
2107
+ "title": "Supplier"
1455
2108
  }
1456
- }
2109
+ },
2110
+ "required": [
2111
+ "supplier"
2112
+ ]
1457
2113
  },
1458
2114
  {
1459
2115
  "properties": {
@@ -1464,11 +2120,28 @@
1464
2120
  }
1465
2121
  }
1466
2122
  }
1467
- ]
2123
+ ],
2124
+ "required": [
2125
+ "yesNo"
2126
+ ],
2127
+ "properties": {
2128
+ "yesNo": {
2129
+ "ta6Ref": "13.3.1",
2130
+ "enum": [
2131
+ "Yes",
2132
+ "To be connected",
2133
+ "No"
2134
+ ]
2135
+ }
2136
+ }
1468
2137
  }
1469
2138
  }
1470
2139
  },
1471
2140
  "drainage": {
2141
+ "required": [
2142
+ "mainsSurfaceWaterDrainage",
2143
+ "mainsFoulDrainage"
2144
+ ],
1472
2145
  "properties": {
1473
2146
  "mainsSurfaceWaterDrainage": {
1474
2147
  "ta6Ref": "12.4b",
@@ -1504,7 +2177,20 @@
1504
2177
  }
1505
2178
  }
1506
2179
  }
1507
- ]
2180
+ ],
2181
+ "required": [
2182
+ "yesNo"
2183
+ ],
2184
+ "properties": {
2185
+ "yesNo": {
2186
+ "ta6Ref": "12.4b1",
2187
+ "enum": [
2188
+ "Yes",
2189
+ "To be connected",
2190
+ "No"
2191
+ ]
2192
+ }
2193
+ }
1508
2194
  },
1509
2195
  "mainsFoulDrainage": {
1510
2196
  "ta6Ref": "12.4a",
@@ -1562,16 +2248,32 @@
1562
2248
  ]
1563
2249
  },
1564
2250
  "dateReplaced": {
1565
- "ta6Ref": "12.5.1",
2251
+ "ta6Ref": "12.5a2",
1566
2252
  "title": "Date replaced or upgraded"
1567
2253
  },
1568
2254
  "dateLastEmptied": {
1569
2255
  "ta6Ref": "12.7",
1570
2256
  "title": "Date last emptied"
1571
2257
  }
1572
- }
2258
+ },
2259
+ "required": [
2260
+ "dateReplaced",
2261
+ "dateLastEmptied"
2262
+ ]
1573
2263
  }
1574
- ]
2264
+ ],
2265
+ "required": [
2266
+ "yesNo"
2267
+ ],
2268
+ "properties": {
2269
+ "yesNo": {
2270
+ "ta6Ref": "12.5a1",
2271
+ "enum": [
2272
+ "Yes",
2273
+ "No"
2274
+ ]
2275
+ }
2276
+ }
1575
2277
  },
1576
2278
  "cesspit": {
1577
2279
  "ta6Ref": "12.5b",
@@ -1595,13 +2297,23 @@
1595
2297
  "enum": [
1596
2298
  "Yes"
1597
2299
  ]
2300
+ },
2301
+ "dateLastEmptied": {
2302
+ "ta6Ref": "12.7",
2303
+ "title": "Date last emptied"
1598
2304
  }
1599
- }
2305
+ },
2306
+ "required": [
2307
+ "dateLastEmptied"
2308
+ ]
1600
2309
  }
2310
+ ],
2311
+ "required": [
2312
+ "yesNo"
1601
2313
  ]
1602
2314
  },
1603
2315
  "sewerageTreatmentPlant": {
1604
- "ta6Ref": "12.5a",
2316
+ "ta6Ref": "12.8",
1605
2317
  "title": "Sewerage treatment plant",
1606
2318
  "discriminator": {
1607
2319
  "propertyName": "yesNo"
@@ -1628,12 +2340,28 @@
1628
2340
  "title": "Date installed"
1629
2341
  },
1630
2342
  "dateLastServiced": {
1631
- "ta6Ref": "12.8",
2343
+ "ta6Ref": "12.8.2",
1632
2344
  "title": "Date last serviced"
1633
2345
  }
1634
- }
2346
+ },
2347
+ "required": [
2348
+ "dateInstalled",
2349
+ "dateLastServiced"
2350
+ ]
1635
2351
  }
1636
- ]
2352
+ ],
2353
+ "required": [
2354
+ "yesNo"
2355
+ ],
2356
+ "properties": {
2357
+ "yesNo": {
2358
+ "ta6Ref": "12.8.1",
2359
+ "enum": [
2360
+ "Yes",
2361
+ "No"
2362
+ ]
2363
+ }
2364
+ }
1637
2365
  },
1638
2366
  "otherConnectedProperties": {
1639
2367
  "ta6Ref": "12.6",
@@ -1659,12 +2387,27 @@
1659
2387
  ]
1660
2388
  },
1661
2389
  "numberOfPropertiesSharing": {
1662
- "ta6Ref": "A7.1.1.2",
2390
+ "ta6Ref": "12.6.2",
1663
2391
  "title": "How many other properties?"
1664
2392
  }
1665
- }
2393
+ },
2394
+ "required": [
2395
+ "numberOfPropertiesSharing"
2396
+ ]
1666
2397
  }
1667
- ]
2398
+ ],
2399
+ "required": [
2400
+ "yesNo"
2401
+ ],
2402
+ "properties": {
2403
+ "yesNo": {
2404
+ "ta6Ref": "12.6.1",
2405
+ "enum": [
2406
+ "Yes",
2407
+ "No"
2408
+ ]
2409
+ }
2410
+ }
1668
2411
  },
1669
2412
  "plantOnOtherLand": {
1670
2413
  "ta6Ref": "12.10",
@@ -1690,19 +2433,44 @@
1690
2433
  ]
1691
2434
  },
1692
2435
  "attachments": {
1693
- "ta6Ref": "12.10.1",
2436
+ "ta6Ref": "12.10.2",
1694
2437
  "title": "Please supply a plan showing the location of the system and how access is obtained.",
1695
2438
  "enum": [
1696
2439
  "Attached",
1697
2440
  "To follow"
1698
2441
  ]
1699
2442
  }
1700
- }
2443
+ },
2444
+ "required": [
2445
+ "attachments"
2446
+ ]
1701
2447
  }
1702
- ]
2448
+ ],
2449
+ "required": [
2450
+ "yesNo"
2451
+ ],
2452
+ "properties": {
2453
+ "yesNo": {
2454
+ "ta6Ref": "12.10.1",
2455
+ "enum": [
2456
+ "Yes",
2457
+ "No"
2458
+ ]
2459
+ }
2460
+ }
1703
2461
  }
1704
- }
2462
+ },
2463
+ "required": [
2464
+ "septicTank",
2465
+ "cesspit",
2466
+ "sewerageTreatmentPlant",
2467
+ "otherConnectedProperties",
2468
+ "plantOnOtherLand"
2469
+ ]
1705
2470
  }
2471
+ ],
2472
+ "required": [
2473
+ "yesNo"
1706
2474
  ]
1707
2475
  }
1708
2476
  }
@@ -1710,28 +2478,82 @@
1710
2478
  }
1711
2479
  },
1712
2480
  "centralHeating": {
1713
- "properties": {
1714
- "hasCentralHeating": {
1715
- "ta6Ref": "12.3",
1716
- "title": "Is there full/partial central heating in your property?",
1717
- "enum": [
1718
- "Yes",
1719
- "No"
1720
- ]
1721
- }
2481
+ "ta6Ref": "12.3",
2482
+ "title": "Central Heating",
2483
+ "discriminator": {
2484
+ "propertyName": "hasCentralHeating"
1722
2485
  },
1723
2486
  "oneOf": [
1724
- null,
1725
2487
  {
1726
2488
  "properties": {
2489
+ "hasCentralHeating": {
2490
+ "enum": [
2491
+ "No"
2492
+ ]
2493
+ }
2494
+ }
2495
+ },
2496
+ {
2497
+ "properties": {
2498
+ "hasCentralHeating": {
2499
+ "enum": [
2500
+ "Yes"
2501
+ ]
2502
+ },
1727
2503
  "centralHeatingDetails": {
1728
- "ta6Ref": "12.3",
2504
+ "ta6Ref": "12.3.2",
1729
2505
  "title": "Central Heating Details",
2506
+ "required": [
2507
+ "centralHeatingFuel",
2508
+ "centralHeatingInstalled",
2509
+ "boilerInstallationCertificate",
2510
+ "heatingLastServicedDate",
2511
+ "heatingLastServicedReport",
2512
+ "heatingInGoodWorkingOrder"
2513
+ ],
1730
2514
  "properties": {
1731
2515
  "centralHeatingFuel": {
2516
+ "ta6Ref": "12.3.3",
2517
+ "title": "Central Heating Fuel",
2518
+ "discriminator": {
2519
+ "propertyName": "centralHeatingFuelType"
2520
+ },
2521
+ "oneOf": [
2522
+ {
2523
+ "properties": {
2524
+ "centralHeatingFuelType": {
2525
+ "enum": [
2526
+ "Gas",
2527
+ "Electricity",
2528
+ "Oil",
2529
+ "LPG"
2530
+ ]
2531
+ }
2532
+ }
2533
+ },
2534
+ {
2535
+ "properties": {
2536
+ "centralHeatingFuelType": {
2537
+ "enum": [
2538
+ "Other"
2539
+ ]
2540
+ },
2541
+ "otherCentralHeatingFuelType": {
2542
+ "ta6Ref": "12.3a2",
2543
+ "title": "Please describe the other fuel type"
2544
+ }
2545
+ },
2546
+ "required": [
2547
+ "otherCentralHeatingFuelType"
2548
+ ]
2549
+ }
2550
+ ],
2551
+ "required": [
2552
+ "centralHeatingFuelType"
2553
+ ],
1732
2554
  "properties": {
1733
2555
  "centralHeatingFuelType": {
1734
- "ta6Ref": "12.3a",
2556
+ "ta6Ref": "12.3a1",
1735
2557
  "title": "What type of fuel does the system run on?",
1736
2558
  "enum": [
1737
2559
  "Gas",
@@ -1741,18 +2563,7 @@
1741
2563
  "Other"
1742
2564
  ]
1743
2565
  }
1744
- },
1745
- "oneOf": [
1746
- null,
1747
- {
1748
- "properties": {
1749
- "otherCentralHeatingFuelType": {
1750
- "ta6Ref": "12.3a",
1751
- "title": "Please describe the other fuel type"
1752
- }
1753
- }
1754
- }
1755
- ]
2566
+ }
1756
2567
  },
1757
2568
  "centralHeatingInstalled": {
1758
2569
  "ta6Ref": "12.3b",
@@ -1780,15 +2591,47 @@
1780
2591
  "enum": [
1781
2592
  "Yes"
1782
2593
  ]
2594
+ },
2595
+ "attachments": {
2596
+ "ta6Ref": "12.3b2",
2597
+ "title": "Please supply a copy of the installation completion certificate from a competent person qualified under the relevant self-certification scheme e.g. HETAS etc",
2598
+ "enum": [
2599
+ "Attached",
2600
+ "To follow"
2601
+ ]
1783
2602
  }
1784
- }
2603
+ },
2604
+ "required": [
2605
+ "attachments"
2606
+ ]
1785
2607
  }
1786
- ]
2608
+ ],
2609
+ "required": [
2610
+ "yesNo"
2611
+ ],
2612
+ "properties": {
2613
+ "yesNo": {
2614
+ "ta6Ref": "12.3b1",
2615
+ "enum": [
2616
+ "Yes",
2617
+ "No"
2618
+ ]
2619
+ }
2620
+ }
1787
2621
  },
1788
2622
  "heatingLastServicedDate": {
1789
- "ta6Ref": "12.3d",
2623
+ "ta6Ref": "12.3d1",
1790
2624
  "title": "When was the heating system last serviced or maintained?"
1791
2625
  },
2626
+ "heatingLastServicedReport": {
2627
+ "ta6Ref": "12.3d2",
2628
+ "title": "Please provide a copy of the service or maintenance works report.",
2629
+ "enum": [
2630
+ "Attached",
2631
+ "To follow",
2632
+ "Not applicable"
2633
+ ]
2634
+ },
1792
2635
  "heatingInGoodWorkingOrder": {
1793
2636
  "ta6Ref": "12.3c",
1794
2637
  "title": "Is the heating system in good working order to your satisfaction?",
@@ -1814,13 +2657,41 @@
1814
2657
  }
1815
2658
  }
1816
2659
  }
1817
- ]
2660
+ ],
2661
+ "required": [
2662
+ "yesNo"
2663
+ ],
2664
+ "properties": {
2665
+ "yesNo": {
2666
+ "ta6Ref": "12.3c1",
2667
+ "enum": [
2668
+ "Yes",
2669
+ "No"
2670
+ ]
2671
+ }
2672
+ }
1818
2673
  }
1819
2674
  }
1820
2675
  }
1821
- }
2676
+ },
2677
+ "required": [
2678
+ "centralHeatingDetails"
2679
+ ]
2680
+ }
2681
+ ],
2682
+ "required": [
2683
+ "hasCentralHeating"
2684
+ ],
2685
+ "properties": {
2686
+ "hasCentralHeating": {
2687
+ "ta6Ref": "12.3.1",
2688
+ "title": "Is there full/partial central heating in your property?",
2689
+ "enum": [
2690
+ "Yes",
2691
+ "No"
2692
+ ]
1822
2693
  }
1823
- ]
2694
+ }
1824
2695
  },
1825
2696
  "insurance": {
1826
2697
  "ta6Ref": "6",
@@ -1835,8 +2706,25 @@
1835
2706
  "enum": [
1836
2707
  "No"
1837
2708
  ]
2709
+ },
2710
+ "details": {
2711
+ "ta6Ref": "6.2",
2712
+ "title": "Why not?"
2713
+ },
2714
+ "landlordInsuresIfFlat": {
2715
+ "ta6Ref": "6.3",
2716
+ "title": "If the property is a flat, does the landlord insure the building?",
2717
+ "enum": [
2718
+ "Yes",
2719
+ "No",
2720
+ "Not applicable"
2721
+ ]
1838
2722
  }
1839
- }
2723
+ },
2724
+ "required": [
2725
+ "details",
2726
+ "landlordInsuresIfFlat"
2727
+ ]
1840
2728
  },
1841
2729
  {
1842
2730
  "properties": {
@@ -1848,30 +2736,198 @@
1848
2736
  "difficultiesObtainingInsurance": {
1849
2737
  "ta6Ref": "6.4",
1850
2738
  "title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
1851
- "description": "(e.g. high premiums, excess over £1,500, special conditions etc)",
1852
- "discriminator": {
1853
- "propertyName": "yesNo"
1854
- },
1855
- "oneOf": [
1856
- {
2739
+ "required": [
2740
+ "abnormalRiseInPremiums",
2741
+ "subjectToHighExcesses",
2742
+ "subjectToUnusualConditions",
2743
+ "refused"
2744
+ ],
2745
+ "properties": {
2746
+ "abnormalRiseInPremiums": {
2747
+ "ta6Ref": "6.4a",
2748
+ "title": "Subject to abnormal rise in premiums?",
2749
+ "discriminator": {
2750
+ "propertyName": "yesNo"
2751
+ },
2752
+ "oneOf": [
2753
+ {
2754
+ "properties": {
2755
+ "yesNo": {
2756
+ "enum": [
2757
+ "No"
2758
+ ]
2759
+ }
2760
+ }
2761
+ },
2762
+ {
2763
+ "properties": {
2764
+ "yesNo": {
2765
+ "enum": [
2766
+ "Yes"
2767
+ ]
2768
+ },
2769
+ "details": {
2770
+ "ta6Ref": "6.4.a2",
2771
+ "title": "Provide details"
2772
+ }
2773
+ },
2774
+ "required": [
2775
+ "details"
2776
+ ]
2777
+ }
2778
+ ],
2779
+ "required": [
2780
+ "yesNo"
2781
+ ],
1857
2782
  "properties": {
1858
2783
  "yesNo": {
2784
+ "ta6Ref": "6.4.a1",
1859
2785
  "enum": [
2786
+ "Yes",
1860
2787
  "No"
1861
2788
  ]
1862
2789
  }
1863
2790
  }
1864
2791
  },
1865
- {
2792
+ "subjectToHighExcesses": {
2793
+ "ta6Ref": "6.4b",
2794
+ "title": "Subject to high excesses?",
2795
+ "discriminator": {
2796
+ "propertyName": "yesNo"
2797
+ },
2798
+ "oneOf": [
2799
+ {
2800
+ "properties": {
2801
+ "yesNo": {
2802
+ "enum": [
2803
+ "No"
2804
+ ]
2805
+ }
2806
+ }
2807
+ },
2808
+ {
2809
+ "properties": {
2810
+ "yesNo": {
2811
+ "enum": [
2812
+ "Yes"
2813
+ ]
2814
+ },
2815
+ "details": {
2816
+ "ta6Ref": "6.4.b2",
2817
+ "title": "Provide details"
2818
+ }
2819
+ },
2820
+ "required": [
2821
+ "details"
2822
+ ]
2823
+ }
2824
+ ],
2825
+ "required": [
2826
+ "yesNo"
2827
+ ],
1866
2828
  "properties": {
1867
2829
  "yesNo": {
2830
+ "ta6Ref": "6.4.b1",
1868
2831
  "enum": [
1869
- "Yes"
2832
+ "Yes",
2833
+ "No"
2834
+ ]
2835
+ }
2836
+ }
2837
+ },
2838
+ "subjectToUnusualConditions": {
2839
+ "ta6Ref": "6.4a",
2840
+ "title": "Subject to unusual conditions?",
2841
+ "discriminator": {
2842
+ "propertyName": "yesNo"
2843
+ },
2844
+ "oneOf": [
2845
+ {
2846
+ "properties": {
2847
+ "yesNo": {
2848
+ "enum": [
2849
+ "No"
2850
+ ]
2851
+ }
2852
+ }
2853
+ },
2854
+ {
2855
+ "properties": {
2856
+ "yesNo": {
2857
+ "enum": [
2858
+ "Yes"
2859
+ ]
2860
+ },
2861
+ "details": {
2862
+ "ta6Ref": "6.4.a2",
2863
+ "title": "Provide details"
2864
+ }
2865
+ },
2866
+ "required": [
2867
+ "details"
2868
+ ]
2869
+ }
2870
+ ],
2871
+ "required": [
2872
+ "yesNo"
2873
+ ],
2874
+ "properties": {
2875
+ "yesNo": {
2876
+ "ta6Ref": "6.4.a1",
2877
+ "enum": [
2878
+ "Yes",
2879
+ "No"
2880
+ ]
2881
+ }
2882
+ }
2883
+ },
2884
+ "refused": {
2885
+ "ta6Ref": "6.4a",
2886
+ "title": "Refused?",
2887
+ "discriminator": {
2888
+ "propertyName": "yesNo"
2889
+ },
2890
+ "oneOf": [
2891
+ {
2892
+ "properties": {
2893
+ "yesNo": {
2894
+ "enum": [
2895
+ "No"
2896
+ ]
2897
+ }
2898
+ }
2899
+ },
2900
+ {
2901
+ "properties": {
2902
+ "yesNo": {
2903
+ "enum": [
2904
+ "Yes"
2905
+ ]
2906
+ },
2907
+ "details": {
2908
+ "ta6Ref": "6.4.a2",
2909
+ "title": "Provide details"
2910
+ }
2911
+ },
2912
+ "required": [
2913
+ "details"
2914
+ ]
2915
+ }
2916
+ ],
2917
+ "required": [
2918
+ "yesNo"
2919
+ ],
2920
+ "properties": {
2921
+ "yesNo": {
2922
+ "ta6Ref": "6.4.a1",
2923
+ "enum": [
2924
+ "Yes",
2925
+ "No"
1870
2926
  ]
1871
2927
  }
1872
2928
  }
1873
2929
  }
1874
- ]
2930
+ }
1875
2931
  },
1876
2932
  "insuranceClaims": {
1877
2933
  "ta6Ref": "6.5",
@@ -1895,14 +2951,40 @@
1895
2951
  "enum": [
1896
2952
  "Yes"
1897
2953
  ]
2954
+ },
2955
+ "details": {
2956
+ "ta6Ref": "6.5.2",
2957
+ "title": "Provide details"
1898
2958
  }
1899
- }
2959
+ },
2960
+ "required": [
2961
+ "details"
2962
+ ]
1900
2963
  }
1901
- ]
2964
+ ],
2965
+ "required": [
2966
+ "yesNo"
2967
+ ],
2968
+ "properties": {
2969
+ "yesNo": {
2970
+ "ta6Ref": "6.5.1",
2971
+ "enum": [
2972
+ "Yes",
2973
+ "No"
2974
+ ]
2975
+ }
2976
+ }
1902
2977
  }
1903
- }
2978
+ },
2979
+ "required": [
2980
+ "difficultiesObtainingInsurance",
2981
+ "insuranceClaims"
2982
+ ]
1904
2983
  }
1905
2984
  ],
2985
+ "required": [
2986
+ "isInsured"
2987
+ ],
1906
2988
  "properties": {
1907
2989
  "isInsured": {
1908
2990
  "ta6Ref": "6.1",
@@ -1914,14 +2996,15 @@
1914
2996
  }
1915
2997
  }
1916
2998
  },
1917
- "boundaries": {
1918
- "ta6Ref": "1",
1919
- "title": "Boundaries",
1920
- "description": "You will need to check your title to answer these questions. If you do not have a copy, for a small fee to HM Land Registry, you can download both the title register and the title plan of the property at https://www.gov.uk/search-property-information-land-registry."
1921
- },
1922
2999
  "rightsAndInformalArrangements": {
1923
3000
  "ta6Ref": "8",
1924
3001
  "title": "Rights and Informal Arrangements",
3002
+ "required": [
3003
+ "sharedContributions",
3004
+ "neighbouringLandRights",
3005
+ "accessRestrictionAttempts",
3006
+ "rightsOrArrangements"
3007
+ ],
1925
3008
  "properties": {
1926
3009
  "sharedContributions": {
1927
3010
  "ta6Ref": "8.1",
@@ -1945,10 +3028,29 @@
1945
3028
  "enum": [
1946
3029
  "Yes"
1947
3030
  ]
3031
+ },
3032
+ "details": {
3033
+ "ta6Ref": "8.1.2",
3034
+ "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"
1948
3035
  }
1949
- }
3036
+ },
3037
+ "required": [
3038
+ "details"
3039
+ ]
1950
3040
  }
1951
- ]
3041
+ ],
3042
+ "required": [
3043
+ "yesNo"
3044
+ ],
3045
+ "properties": {
3046
+ "yesNo": {
3047
+ "ta6Ref": "8.1.1",
3048
+ "enum": [
3049
+ "Yes",
3050
+ "No"
3051
+ ]
3052
+ }
3053
+ }
1952
3054
  },
1953
3055
  "neighbouringLandRights": {
1954
3056
  "ta6Ref": "8.2",
@@ -1972,10 +3074,29 @@
1972
3074
  "enum": [
1973
3075
  "Yes"
1974
3076
  ]
3077
+ },
3078
+ "details": {
3079
+ "ta6Ref": "8.2.1",
3080
+ "title": "Please give details and provide a plan showing the route of the access, parking etc"
1975
3081
  }
1976
- }
3082
+ },
3083
+ "required": [
3084
+ "details"
3085
+ ]
1977
3086
  }
1978
- ]
3087
+ ],
3088
+ "required": [
3089
+ "yesNo"
3090
+ ],
3091
+ "properties": {
3092
+ "yesNo": {
3093
+ "ta6Ref": "8.2.1",
3094
+ "enum": [
3095
+ "Yes",
3096
+ "No"
3097
+ ]
3098
+ }
3099
+ }
1979
3100
  },
1980
3101
  "accessRestrictionAttempts": {
1981
3102
  "ta6Ref": "8.3",
@@ -1999,14 +3120,41 @@
1999
3120
  "enum": [
2000
3121
  "Yes"
2001
3122
  ]
3123
+ },
3124
+ "details": {
3125
+ "ta6Ref": "8.3.2",
3126
+ "title": "Details"
2002
3127
  }
2003
- }
3128
+ },
3129
+ "required": [
3130
+ "details"
3131
+ ]
2004
3132
  }
2005
- ]
2006
- },
2007
- "rightsOrArrangements": {
2008
- "ta6Ref": "8.4",
2009
- "title": "Do you know if any of the following rights or arrangements affect the property?",
3133
+ ],
3134
+ "required": [
3135
+ "yesNo"
3136
+ ],
3137
+ "properties": {
3138
+ "yesNo": {
3139
+ "ta6Ref": "8.3.1",
3140
+ "enum": [
3141
+ "Yes",
3142
+ "No"
3143
+ ]
3144
+ }
3145
+ }
3146
+ },
3147
+ "rightsOrArrangements": {
3148
+ "ta6Ref": "8.4",
3149
+ "title": "Do you know if any of the following rights or arrangements affect the property?",
3150
+ "required": [
3151
+ "publicRightOfWay",
3152
+ "rightsOfLightOrSupport",
3153
+ "rightsCreatedThroughCustom",
3154
+ "minesAndMinerals",
3155
+ "churchChancel",
3156
+ "otherRights"
3157
+ ],
2010
3158
  "properties": {
2011
3159
  "publicRightOfWay": {
2012
3160
  "ta6Ref": "8.6",
@@ -2030,10 +3178,29 @@
2030
3178
  "enum": [
2031
3179
  "Yes"
2032
3180
  ]
3181
+ },
3182
+ "details": {
3183
+ "ta6Ref": "8.6.2",
3184
+ "title": "Please provide details and mark the route on a plan of the property"
2033
3185
  }
2034
- }
3186
+ },
3187
+ "required": [
3188
+ "details"
3189
+ ]
2035
3190
  }
2036
- ]
3191
+ ],
3192
+ "required": [
3193
+ "yesNo"
3194
+ ],
3195
+ "properties": {
3196
+ "yesNo": {
3197
+ "ta6Ref": "8.6.1",
3198
+ "enum": [
3199
+ "Yes",
3200
+ "No"
3201
+ ]
3202
+ }
3203
+ }
2037
3204
  },
2038
3205
  "rightsOfLightOrSupport": {
2039
3206
  "ta6Ref": "8.4a",
@@ -2057,10 +3224,29 @@
2057
3224
  "enum": [
2058
3225
  "Yes"
2059
3226
  ]
3227
+ },
3228
+ "details": {
3229
+ "ta6Ref": "8.4a2",
3230
+ "title": "Details"
2060
3231
  }
2061
- }
3232
+ },
3233
+ "required": [
3234
+ "details"
3235
+ ]
2062
3236
  }
2063
- ]
3237
+ ],
3238
+ "required": [
3239
+ "yesNo"
3240
+ ],
3241
+ "properties": {
3242
+ "yesNo": {
3243
+ "ta6Ref": "8.4a1",
3244
+ "enum": [
3245
+ "Yes",
3246
+ "No"
3247
+ ]
3248
+ }
3249
+ }
2064
3250
  },
2065
3251
  "rightsCreatedThroughCustom": {
2066
3252
  "ta6Ref": "8.4c",
@@ -2084,10 +3270,29 @@
2084
3270
  "enum": [
2085
3271
  "Yes"
2086
3272
  ]
3273
+ },
3274
+ "details": {
3275
+ "ta6Ref": "8.4c2",
3276
+ "title": "Details"
2087
3277
  }
2088
- }
3278
+ },
3279
+ "required": [
3280
+ "details"
3281
+ ]
2089
3282
  }
2090
- ]
3283
+ ],
3284
+ "required": [
3285
+ "yesNo"
3286
+ ],
3287
+ "properties": {
3288
+ "yesNo": {
3289
+ "ta6Ref": "8.4c1",
3290
+ "enum": [
3291
+ "Yes",
3292
+ "No"
3293
+ ]
3294
+ }
3295
+ }
2091
3296
  },
2092
3297
  "minesAndMinerals": {
2093
3298
  "ta6Ref": "8.5a",
@@ -2111,10 +3316,29 @@
2111
3316
  "enum": [
2112
3317
  "Yes"
2113
3318
  ]
3319
+ },
3320
+ "details": {
3321
+ "ta6Ref": "8.5a2",
3322
+ "title": "Details"
2114
3323
  }
2115
- }
3324
+ },
3325
+ "required": [
3326
+ "details"
3327
+ ]
2116
3328
  }
2117
- ]
3329
+ ],
3330
+ "required": [
3331
+ "yesNo"
3332
+ ],
3333
+ "properties": {
3334
+ "yesNo": {
3335
+ "ta6Ref": "8.5a1",
3336
+ "enum": [
3337
+ "Yes",
3338
+ "No"
3339
+ ]
3340
+ }
3341
+ }
2118
3342
  },
2119
3343
  "churchChancel": {
2120
3344
  "ta6Ref": "8.5b",
@@ -2138,10 +3362,29 @@
2138
3362
  "enum": [
2139
3363
  "Yes"
2140
3364
  ]
3365
+ },
3366
+ "details": {
3367
+ "ta6Ref": "8.5b2",
3368
+ "title": "Details"
2141
3369
  }
2142
- }
3370
+ },
3371
+ "required": [
3372
+ "details"
3373
+ ]
2143
3374
  }
2144
- ]
3375
+ ],
3376
+ "required": [
3377
+ "yesNo"
3378
+ ],
3379
+ "properties": {
3380
+ "yesNo": {
3381
+ "ta6Ref": "8.5b1",
3382
+ "enum": [
3383
+ "Yes",
3384
+ "No"
3385
+ ]
3386
+ }
3387
+ }
2145
3388
  },
2146
3389
  "otherRights": {
2147
3390
  "ta6Ref": "8.6",
@@ -2165,16 +3408,40 @@
2165
3408
  "enum": [
2166
3409
  "Yes"
2167
3410
  ]
3411
+ },
3412
+ "details": {
3413
+ "ta6Ref": "8.6.2",
3414
+ "title": "Details"
2168
3415
  }
2169
- }
3416
+ },
3417
+ "required": [
3418
+ "details"
3419
+ ]
2170
3420
  }
2171
- ]
3421
+ ],
3422
+ "required": [
3423
+ "yesNo"
3424
+ ],
3425
+ "properties": {
3426
+ "yesNo": {
3427
+ "ta6Ref": "8.6.1",
3428
+ "enum": [
3429
+ "Yes",
3430
+ "No"
3431
+ ]
3432
+ }
3433
+ }
2172
3434
  }
2173
3435
  }
2174
3436
  }
2175
3437
  }
2176
3438
  },
2177
3439
  "environmentalIssues": {
3440
+ "required": [
3441
+ "flooding",
3442
+ "radon",
3443
+ "otherEnvironmental"
3444
+ ],
2178
3445
  "properties": {
2179
3446
  "flooding": {
2180
3447
  "ta6Ref": "7.1",
@@ -2206,6 +3473,14 @@
2206
3473
  "typeOfFlooding": {
2207
3474
  "ta6Ref": "7.2",
2208
3475
  "title": "What type of flooding occurred?",
3476
+ "required": [
3477
+ "groundWater",
3478
+ "sewer",
3479
+ "surfaceWater",
3480
+ "coastal",
3481
+ "river",
3482
+ "other"
3483
+ ],
2209
3484
  "properties": {
2210
3485
  "groundWater": {
2211
3486
  "ta6Ref": "7.2a",
@@ -2246,12 +3521,66 @@
2246
3521
  "Yes",
2247
3522
  "No"
2248
3523
  ]
3524
+ },
3525
+ "other": {
3526
+ "ta6Ref": "7.2f",
3527
+ "title": "Other",
3528
+ "discriminator": {
3529
+ "propertyName": "yesNo"
3530
+ },
3531
+ "oneOf": [
3532
+ {
3533
+ "properties": {
3534
+ "yesNo": {
3535
+ "enum": [
3536
+ "No"
3537
+ ]
3538
+ }
3539
+ }
3540
+ },
3541
+ {
3542
+ "properties": {
3543
+ "yesNo": {
3544
+ "enum": [
3545
+ "Yes"
3546
+ ]
3547
+ },
3548
+ "details": {
3549
+ "ta6Ref": "7.2f1",
3550
+ "title": "Please stata"
3551
+ }
3552
+ },
3553
+ "required": [
3554
+ "details"
3555
+ ]
3556
+ }
3557
+ ],
3558
+ "required": [
3559
+ "yesNo"
3560
+ ],
3561
+ "properties": {
3562
+ "yesNo": {
3563
+ "ta6Ref": "7.2f1",
3564
+ "enum": [
3565
+ "Yes",
3566
+ "No"
3567
+ ]
3568
+ }
3569
+ }
2249
3570
  }
2250
3571
  }
2251
3572
  }
2252
- }
3573
+ },
3574
+ "required": [
3575
+ "typeOfFlooding",
3576
+ "details"
3577
+ ]
2253
3578
  }
2254
3579
  ],
3580
+ "required": [
3581
+ "floodRiskReport",
3582
+ "hasBeenFlooded"
3583
+ ],
2255
3584
  "properties": {
2256
3585
  "floodRiskReport": {
2257
3586
  "ta6Ref": "7.3",
@@ -2275,10 +3604,33 @@
2275
3604
  "enum": [
2276
3605
  "Yes"
2277
3606
  ]
3607
+ },
3608
+ "attachments": {
3609
+ "ta6Ref": "7.3.2",
3610
+ "title": "Please supply a copy",
3611
+ "enum": [
3612
+ "Attached",
3613
+ "To follow"
3614
+ ]
2278
3615
  }
2279
- }
3616
+ },
3617
+ "required": [
3618
+ "attachments"
3619
+ ]
2280
3620
  }
2281
- ]
3621
+ ],
3622
+ "required": [
3623
+ "yesNo"
3624
+ ],
3625
+ "properties": {
3626
+ "yesNo": {
3627
+ "ta6Ref": "7.3.1",
3628
+ "enum": [
3629
+ "Yes",
3630
+ "No"
3631
+ ]
3632
+ }
3633
+ }
2282
3634
  },
2283
3635
  "hasBeenFlooded": {
2284
3636
  "ta6Ref": "7.2",
@@ -2293,6 +3645,10 @@
2293
3645
  "radon": {
2294
3646
  "ta6Ref": "7.4",
2295
3647
  "title": "Radon",
3648
+ "required": [
3649
+ "remedialMeasuresOnConstruction",
3650
+ "radonTest"
3651
+ ],
2296
3652
  "properties": {
2297
3653
  "radonTest": {
2298
3654
  "ta6Ref": "7.4",
@@ -2316,14 +3672,104 @@
2316
3672
  "enum": [
2317
3673
  "Yes"
2318
3674
  ]
3675
+ },
3676
+ "details": {
3677
+ "ta6Ref": "7.4a",
3678
+ "title": "Was the test result was below the recommended level?",
3679
+ "enum": [
3680
+ "Yes",
3681
+ "No"
3682
+ ]
3683
+ },
3684
+ "attachments": {
3685
+ "ta6Ref": "7.4b",
3686
+ "title": "Please supply a copy of the report",
3687
+ "enum": [
3688
+ "Attached",
3689
+ "To follow"
3690
+ ]
2319
3691
  }
2320
- }
3692
+ },
3693
+ "required": [
3694
+ "details",
3695
+ "attachments"
3696
+ ]
2321
3697
  }
2322
- ]
3698
+ ],
3699
+ "required": [
3700
+ "yesNo"
3701
+ ],
3702
+ "properties": {
3703
+ "yesNo": {
3704
+ "ta6Ref": "7.4.1",
3705
+ "enum": [
3706
+ "Yes",
3707
+ "No"
3708
+ ]
3709
+ }
3710
+ }
2323
3711
  },
2324
3712
  "remedialMeasuresOnConstruction": {
2325
3713
  "ta6Ref": "7.5",
2326
- "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?"
3714
+ "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?",
3715
+ "required": [
3716
+ "yesNo"
3717
+ ]
3718
+ }
3719
+ }
3720
+ }
3721
+ }
3722
+ },
3723
+ "additionalInformation": {
3724
+ "ta6Ref": "10",
3725
+ "title": "Additional Information",
3726
+ "required": [
3727
+ "otherCharges"
3728
+ ],
3729
+ "properties": {
3730
+ "otherCharges": {
3731
+ "ta6Ref": "10.1",
3732
+ "title": "Does the seller have to pay any charges relating to the property (excluding any payments such as council tax, utility charges, etc.), for example payments to a management company?",
3733
+ "discriminator": {
3734
+ "propertyName": "yesNo"
3735
+ },
3736
+ "oneOf": [
3737
+ {
3738
+ "properties": {
3739
+ "yesNo": {
3740
+ "enum": [
3741
+ "No"
3742
+ ]
3743
+ }
3744
+ }
3745
+ },
3746
+ {
3747
+ "properties": {
3748
+ "yesNo": {
3749
+ "enum": [
3750
+ "Yes"
3751
+ ]
3752
+ },
3753
+ "details": {
3754
+ "ta6Ref": "10.2",
3755
+ "title": "Please give details"
3756
+ }
3757
+ },
3758
+ "required": [
3759
+ "details"
3760
+ ]
3761
+ }
3762
+ ],
3763
+ "required": [
3764
+ "yesNo"
3765
+ ],
3766
+ "properties": {
3767
+ "yesNo": {
3768
+ "ta6Ref": "10.1",
3769
+ "enum": [
3770
+ "Yes",
3771
+ "No"
3772
+ ]
2327
3773
  }
2328
3774
  }
2329
3775
  }
@@ -2332,13 +3778,1541 @@
2332
3778
  }
2333
3779
  },
2334
3780
  "additionalLegalInfo": {
3781
+ "ta6Ref": "0",
3782
+ "title": "Additional information required for the legal process",
3783
+ "description": "Supporting mapping to BASPI, Law Society and RICS Data Schema elements.",
3784
+ "required": [
3785
+ "legalBoundaries",
3786
+ "servicesCrossing",
3787
+ "energyAndMeters",
3788
+ "guaranteesWarrantiesAndIndemnityInsurances",
3789
+ "occupiers",
3790
+ "completionAndMoving",
3791
+ "confirmationOfAccuracyByOwners"
3792
+ ],
2335
3793
  "properties": {
2336
- "completionAndMoving": {
3794
+ "legalBoundaries": {
3795
+ "ta6Ref": "1",
3796
+ "title": "Legal Boundaries",
3797
+ "required": [
3798
+ "ownership",
3799
+ "haveBoundaryFeaturesMoved",
3800
+ "adjacentLandIncluded",
3801
+ "flyingFreehold"
3802
+ ],
2337
3803
  "properties": {
2338
- "willRemoveAllRubbish": {
2339
- "ta6Ref": "14.4",
2340
- "title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
2341
- "description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services e.g. doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know."
3804
+ "ownership": {
3805
+ "required": [
3806
+ "areBoundariesUniform"
3807
+ ],
3808
+ "properties": {
3809
+ "areBoundariesUniform": {
3810
+ "ta6Ref": "1.2",
3811
+ "title": "Are the boundaries uniform?",
3812
+ "enum": [
3813
+ "Yes",
3814
+ "No",
3815
+ "Not applicable"
3816
+ ]
3817
+ }
3818
+ },
3819
+ "oneOf": [
3820
+ {
3821
+ "properties": {
3822
+ "uniformBoundaries": {
3823
+ "required": [
3824
+ "left",
3825
+ "right",
3826
+ "rear",
3827
+ "front"
3828
+ ],
3829
+ "properties": {
3830
+ "left": {
3831
+ "ta6Ref": "1.1a",
3832
+ "title": "On the left",
3833
+ "enum": [
3834
+ "Seller",
3835
+ "Shared",
3836
+ "Neighbour",
3837
+ "Not known"
3838
+ ]
3839
+ },
3840
+ "right": {
3841
+ "ta6Ref": "1.1b",
3842
+ "title": "On the right",
3843
+ "enum": [
3844
+ "Seller",
3845
+ "Shared",
3846
+ "Neighbour",
3847
+ "Not known"
3848
+ ]
3849
+ },
3850
+ "rear": {
3851
+ "ta6Ref": "1.1c",
3852
+ "title": "At the rear",
3853
+ "enum": [
3854
+ "Seller",
3855
+ "Shared",
3856
+ "Neighbour",
3857
+ "Not known"
3858
+ ]
3859
+ },
3860
+ "front": {
3861
+ "ta6Ref": "1.1d",
3862
+ "title": "At the front",
3863
+ "enum": [
3864
+ "Seller",
3865
+ "Shared",
3866
+ "Neighbour",
3867
+ "Not known"
3868
+ ]
3869
+ }
3870
+ }
3871
+ }
3872
+ }
3873
+ },
3874
+ {
3875
+ "required": [
3876
+ "details",
3877
+ "attachments"
3878
+ ],
3879
+ "properties": {
3880
+ "details": {
3881
+ "ta6Ref": "1.2.1",
3882
+ "title": "Please indicate ownership or those you have repaired by written description or marking them on a plan of the property"
3883
+ },
3884
+ "attachments": {
3885
+ "ta6Ref": "1.2.2",
3886
+ "title": "Attachments",
3887
+ "enum": [
3888
+ "Attached",
3889
+ "To follow"
3890
+ ]
3891
+ }
3892
+ }
3893
+ }
3894
+ ]
3895
+ },
3896
+ "haveBoundaryFeaturesMoved": {
3897
+ "ta6Ref": "1.3",
3898
+ "title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
3899
+ "discriminator": {
3900
+ "propertyName": "yesNo"
3901
+ },
3902
+ "oneOf": [
3903
+ {
3904
+ "properties": {
3905
+ "yesNo": {
3906
+ "enum": [
3907
+ "No",
3908
+ "Not applicable"
3909
+ ]
3910
+ }
3911
+ }
3912
+ },
3913
+ {
3914
+ "properties": {
3915
+ "yesNo": {
3916
+ "enum": [
3917
+ "Yes"
3918
+ ]
3919
+ },
3920
+ "details": {
3921
+ "ta6Ref": "1.3.2",
3922
+ "title": "Details"
3923
+ }
3924
+ },
3925
+ "required": [
3926
+ "details"
3927
+ ]
3928
+ }
3929
+ ],
3930
+ "required": [
3931
+ "yesNo"
3932
+ ],
3933
+ "properties": {
3934
+ "yesNo": {
3935
+ "ta6Ref": "1.3.1",
3936
+ "enum": [
3937
+ "Yes",
3938
+ "No",
3939
+ "Not applicable"
3940
+ ]
3941
+ }
3942
+ }
3943
+ },
3944
+ "adjacentLandIncluded": {
3945
+ "ta6Ref": "1.4",
3946
+ "title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
3947
+ "discriminator": {
3948
+ "propertyName": "yesNo"
3949
+ },
3950
+ "oneOf": [
3951
+ {
3952
+ "properties": {
3953
+ "yesNo": {
3954
+ "enum": [
3955
+ "No",
3956
+ "Not applicable"
3957
+ ]
3958
+ }
3959
+ }
3960
+ },
3961
+ {
3962
+ "properties": {
3963
+ "yesNo": {
3964
+ "enum": [
3965
+ "Yes"
3966
+ ]
3967
+ },
3968
+ "details": {
3969
+ "ta6Ref": "1.4.2",
3970
+ "title": "Details"
3971
+ }
3972
+ },
3973
+ "required": [
3974
+ "details"
3975
+ ]
3976
+ }
3977
+ ],
3978
+ "required": [
3979
+ "yesNo"
3980
+ ],
3981
+ "properties": {
3982
+ "yesNo": {
3983
+ "ta6Ref": "1.4.1",
3984
+ "enum": [
3985
+ "Yes",
3986
+ "No",
3987
+ "Not applicable"
3988
+ ]
3989
+ }
3990
+ }
3991
+ },
3992
+ "flyingFreehold": {
3993
+ "ta6Ref": "1.5",
3994
+ "title": "Is there a flying freehold?",
3995
+ "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.",
3996
+ "discriminator": {
3997
+ "propertyName": "yesNo"
3998
+ },
3999
+ "oneOf": [
4000
+ {
4001
+ "properties": {
4002
+ "yesNo": {
4003
+ "enum": [
4004
+ "No",
4005
+ "Not applicable"
4006
+ ]
4007
+ }
4008
+ }
4009
+ },
4010
+ {
4011
+ "properties": {
4012
+ "yesNo": {
4013
+ "enum": [
4014
+ "Yes"
4015
+ ]
4016
+ },
4017
+ "details": {
4018
+ "ta6Ref": "1.5.2",
4019
+ "title": "Details"
4020
+ }
4021
+ },
4022
+ "required": [
4023
+ "details"
4024
+ ]
4025
+ }
4026
+ ],
4027
+ "required": [
4028
+ "yesNo"
4029
+ ],
4030
+ "properties": {
4031
+ "yesNo": {
4032
+ "ta6Ref": "1.5.1",
4033
+ "enum": [
4034
+ "Yes",
4035
+ "No",
4036
+ "Not applicable"
4037
+ ]
4038
+ }
4039
+ }
4040
+ }
4041
+ }
4042
+ },
4043
+ "servicesCrossing": {
4044
+ "ta6Ref": "8",
4045
+ "title": "Services Crossing Other Property",
4046
+ "required": [
4047
+ "pipesWiresCablesDrainsToProperty",
4048
+ "pipesWiresCablesDrainsFromProperty",
4049
+ "formalOrInformalAgreements"
4050
+ ],
4051
+ "properties": {
4052
+ "pipesWiresCablesDrainsToProperty": {
4053
+ "ta6Ref": "8.7",
4054
+ "title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
4055
+ "discriminator": {
4056
+ "propertyName": "yesNo"
4057
+ },
4058
+ "oneOf": [
4059
+ {
4060
+ "properties": {
4061
+ "yesNo": {
4062
+ "enum": [
4063
+ "No"
4064
+ ]
4065
+ }
4066
+ }
4067
+ },
4068
+ {
4069
+ "properties": {
4070
+ "yesNo": {
4071
+ "enum": [
4072
+ "Yes"
4073
+ ]
4074
+ }
4075
+ }
4076
+ }
4077
+ ],
4078
+ "required": [
4079
+ "yesNo"
4080
+ ],
4081
+ "properties": {
4082
+ "yesNo": {
4083
+ "ta6Ref": "8.7.1",
4084
+ "enum": [
4085
+ "Yes",
4086
+ "No"
4087
+ ]
4088
+ }
4089
+ }
4090
+ },
4091
+ "pipesWiresCablesDrainsFromProperty": {
4092
+ "ta6Ref": "8.8",
4093
+ "title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
4094
+ "discriminator": {
4095
+ "propertyName": "yesNo"
4096
+ },
4097
+ "oneOf": [
4098
+ {
4099
+ "properties": {
4100
+ "yesNo": {
4101
+ "enum": [
4102
+ "No"
4103
+ ]
4104
+ }
4105
+ }
4106
+ },
4107
+ {
4108
+ "properties": {
4109
+ "yesNo": {
4110
+ "enum": [
4111
+ "Yes"
4112
+ ]
4113
+ }
4114
+ }
4115
+ }
4116
+ ],
4117
+ "required": [
4118
+ "yesNo"
4119
+ ],
4120
+ "properties": {
4121
+ "yesNo": {
4122
+ "ta6Ref": "8.8.1",
4123
+ "enum": [
4124
+ "Yes",
4125
+ "No"
4126
+ ]
4127
+ }
4128
+ }
4129
+ },
4130
+ "formalOrInformalAgreements": {
4131
+ "ta6Ref": "8.9",
4132
+ "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?",
4133
+ "discriminator": {
4134
+ "propertyName": "yesNo"
4135
+ },
4136
+ "oneOf": [
4137
+ {
4138
+ "properties": {
4139
+ "yesNo": {
4140
+ "enum": [
4141
+ "No"
4142
+ ]
4143
+ }
4144
+ }
4145
+ },
4146
+ {
4147
+ "properties": {
4148
+ "yesNo": {
4149
+ "enum": [
4150
+ "Yes"
4151
+ ]
4152
+ },
4153
+ "details": {
4154
+ "ta6Ref": "8.9.2",
4155
+ "title": "Please provide details"
4156
+ }
4157
+ },
4158
+ "required": [
4159
+ "details"
4160
+ ]
4161
+ }
4162
+ ],
4163
+ "required": [
4164
+ "yesNo"
4165
+ ],
4166
+ "properties": {
4167
+ "yesNo": {
4168
+ "ta6Ref": "8.9.1",
4169
+ "enum": [
4170
+ "Yes",
4171
+ "No"
4172
+ ]
4173
+ }
4174
+ }
4175
+ }
4176
+ }
4177
+ },
4178
+ "energyAndMeters": {
4179
+ "ta6Ref": "12",
4180
+ "title": "Energy and Meters",
4181
+ "required": [
4182
+ "testedByQualifiedElectrician",
4183
+ "electricalWorkSince2005",
4184
+ "solarPanels"
4185
+ ],
4186
+ "properties": {
4187
+ "testedByQualifiedElectrician": {
4188
+ "ta6Ref": "12.1",
4189
+ "title": "Have the electrics at the property been tested by a qualified electrician?",
4190
+ "discriminator": {
4191
+ "propertyName": "yesNo"
4192
+ },
4193
+ "oneOf": [
4194
+ {
4195
+ "properties": {
4196
+ "yesNo": {
4197
+ "enum": [
4198
+ "No"
4199
+ ]
4200
+ }
4201
+ }
4202
+ },
4203
+ {
4204
+ "properties": {
4205
+ "yesNo": {
4206
+ "enum": [
4207
+ "Yes"
4208
+ ]
4209
+ },
4210
+ "yearTested": {
4211
+ "ta6Ref": "12.1.1",
4212
+ "title": "State the year they were last tested"
4213
+ },
4214
+ "attachments": {
4215
+ "ta6Ref": "12.1.2",
4216
+ "title": "Please upload the test certificate.",
4217
+ "enum": [
4218
+ "Attached",
4219
+ "To follow"
4220
+ ]
4221
+ }
4222
+ },
4223
+ "required": [
4224
+ "yearTested",
4225
+ "attachments"
4226
+ ]
4227
+ }
4228
+ ],
4229
+ "required": [
4230
+ "yesNo"
4231
+ ],
4232
+ "properties": {
4233
+ "yesNo": {
4234
+ "ta6Ref": "12.1.1",
4235
+ "enum": [
4236
+ "Yes",
4237
+ "No"
4238
+ ]
4239
+ }
4240
+ }
4241
+ },
4242
+ "electricalWorkSince2005": {
4243
+ "ta6Ref": "12.2",
4244
+ "title": "Since 1st January 2005, has any electrical work been carried out to the property?",
4245
+ "discriminator": {
4246
+ "propertyName": "yesNo"
4247
+ },
4248
+ "oneOf": [
4249
+ {
4250
+ "properties": {
4251
+ "yesNo": {
4252
+ "enum": [
4253
+ "No"
4254
+ ]
4255
+ }
4256
+ }
4257
+ },
4258
+ {
4259
+ "properties": {
4260
+ "yesNo": {
4261
+ "enum": [
4262
+ "Yes"
4263
+ ]
4264
+ },
4265
+ "attachments": {
4266
+ "ta6Ref": "12.2.2",
4267
+ "title": "Please supply the signed Electrical Safety Certificate (BS7671) and Building Regulations Compliance Certificate (or equivalent)",
4268
+ "enum": [
4269
+ "Attached",
4270
+ "To follow"
4271
+ ]
4272
+ }
4273
+ },
4274
+ "required": [
4275
+ "attachments"
4276
+ ]
4277
+ }
4278
+ ],
4279
+ "required": [
4280
+ "yesNo"
4281
+ ],
4282
+ "properties": {
4283
+ "yesNo": {
4284
+ "ta6Ref": "12.2.1",
4285
+ "enum": [
4286
+ "Yes",
4287
+ "No"
4288
+ ]
4289
+ }
4290
+ }
4291
+ },
4292
+ "solarPanels": {
4293
+ "required": [
4294
+ "hasSolarPanels"
4295
+ ],
4296
+ "properties": {
4297
+ "hasSolarPanels": {
4298
+ "ta6Ref": "4.6",
4299
+ "title": "Are there solar or photovoltaic panels installed at the property?",
4300
+ "enum": [
4301
+ "Yes",
4302
+ "No"
4303
+ ]
4304
+ }
4305
+ },
4306
+ "oneOf": [
4307
+ null,
4308
+ {
4309
+ "required": [
4310
+ "yearInstalled",
4311
+ "panelsOwnedOutright",
4312
+ "panelProviderLease"
4313
+ ],
4314
+ "properties": {
4315
+ "yearInstalled": {
4316
+ "ta6Ref": "4.6a",
4317
+ "title": "What year were they installed?"
4318
+ },
4319
+ "panelsOwnedOutright": {
4320
+ "ta6Ref": "4.6b",
4321
+ "title": "Do you own the panels, and all equipment related to them, outright?",
4322
+ "discriminator": {
4323
+ "propertyName": "yesNo"
4324
+ },
4325
+ "oneOf": [
4326
+ {
4327
+ "properties": {
4328
+ "yesNo": {
4329
+ "enum": [
4330
+ "Yes"
4331
+ ]
4332
+ }
4333
+ }
4334
+ },
4335
+ {
4336
+ "properties": {
4337
+ "yesNo": {
4338
+ "enum": [
4339
+ "No"
4340
+ ]
4341
+ }
4342
+ }
4343
+ }
4344
+ ],
4345
+ "required": [
4346
+ "yesNo"
4347
+ ],
4348
+ "properties": {
4349
+ "yesNo": {
4350
+ "ta6Ref": "4.6b1",
4351
+ "enum": [
4352
+ "Yes",
4353
+ "No"
4354
+ ]
4355
+ }
4356
+ }
4357
+ },
4358
+ "panelProviderLease": {
4359
+ "ta6Ref": "4.6c",
4360
+ "title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
4361
+ "discriminator": {
4362
+ "propertyName": "yesNo"
4363
+ },
4364
+ "oneOf": [
4365
+ {
4366
+ "properties": {
4367
+ "yesNo": {
4368
+ "enum": [
4369
+ "No"
4370
+ ]
4371
+ }
4372
+ }
4373
+ },
4374
+ {
4375
+ "properties": {
4376
+ "yesNo": {
4377
+ "enum": [
4378
+ "Yes"
4379
+ ]
4380
+ },
4381
+ "attachments": {
4382
+ "ta6Ref": "4.6c1",
4383
+ "title": "Please supply copies of the relevant documents",
4384
+ "enum": [
4385
+ "Attached",
4386
+ "To follow"
4387
+ ]
4388
+ }
4389
+ },
4390
+ "required": [
4391
+ "attachments"
4392
+ ]
4393
+ }
4394
+ ],
4395
+ "required": [
4396
+ "yesNo"
4397
+ ],
4398
+ "properties": {
4399
+ "yesNo": {
4400
+ "ta6Ref": "4.6c1",
4401
+ "enum": [
4402
+ "Yes",
4403
+ "No"
4404
+ ]
4405
+ }
4406
+ }
4407
+ }
4408
+ }
4409
+ }
4410
+ ]
4411
+ },
4412
+ "electricityMeterLocation": {
4413
+ "ta6Ref": "13.1b",
4414
+ "title": "Location of electricity meter (if any)",
4415
+ "properties": {
4416
+ "description": {
4417
+ "ta6Ref": "13.1b1",
4418
+ "title": "Describe the location of the meter"
4419
+ }
4420
+ }
4421
+ },
4422
+ "gasMeterLocation": {
4423
+ "ta6Ref": "13.2b",
4424
+ "title": "Location of gas meter (if any)",
4425
+ "properties": {
4426
+ "description": {
4427
+ "ta6Ref": "13.2b1",
4428
+ "title": "Describe the location of the meter"
4429
+ }
4430
+ }
4431
+ },
4432
+ "stopcockLocation": {
4433
+ "ta6Ref": "13.3b",
4434
+ "title": "Location of stopcock (if any)",
4435
+ "properties": {
4436
+ "description": {
4437
+ "ta6Ref": "13.3b1",
4438
+ "title": "Describe the location of the stopcock"
4439
+ }
4440
+ }
4441
+ },
4442
+ "waterMeterLocation": {
4443
+ "ta6Ref": "13.3b",
4444
+ "title": "Location of water meter (if any)",
4445
+ "properties": {
4446
+ "description": {
4447
+ "ta6Ref": "13.3b2",
4448
+ "title": "Describe the location of the meter"
4449
+ }
4450
+ }
4451
+ }
4452
+ }
4453
+ },
4454
+ "guaranteesWarrantiesAndIndemnityInsurances": {
4455
+ "ta6Ref": "5",
4456
+ "title": "Guarantees, Warranties and Indemnity Insurances",
4457
+ "discriminator": {
4458
+ "propertyName": "hasValidGuaranteesOrWarranties"
4459
+ },
4460
+ "oneOf": [
4461
+ {
4462
+ "properties": {
4463
+ "hasValidGuaranteesOrWarranties": {
4464
+ "enum": [
4465
+ "No"
4466
+ ]
4467
+ }
4468
+ }
4469
+ },
4470
+ {
4471
+ "properties": {
4472
+ "hasValidGuaranteesOrWarranties": {
4473
+ "enum": [
4474
+ "Yes"
4475
+ ]
4476
+ },
4477
+ "newHomeWarranty": {
4478
+ "ta6Ref": "5.1a",
4479
+ "title": "New Home Warranty (NHBC or similar)",
4480
+ "discriminator": {
4481
+ "propertyName": "yesNo"
4482
+ },
4483
+ "oneOf": [
4484
+ {
4485
+ "properties": {
4486
+ "yesNo": {
4487
+ "enum": [
4488
+ "No"
4489
+ ]
4490
+ }
4491
+ }
4492
+ },
4493
+ {
4494
+ "properties": {
4495
+ "yesNo": {
4496
+ "enum": [
4497
+ "Yes"
4498
+ ]
4499
+ },
4500
+ "details": {
4501
+ "ta6Ref": "5.1a2",
4502
+ "title": "Please confirm the name of the warranty provider and the date of the warranty"
4503
+ },
4504
+ "attachments": {
4505
+ "ta6Ref": "5.1a3",
4506
+ "enum": [
4507
+ "Attached",
4508
+ "To follow"
4509
+ ]
4510
+ }
4511
+ },
4512
+ "required": [
4513
+ "attachments"
4514
+ ]
4515
+ }
4516
+ ],
4517
+ "required": [
4518
+ "yesNo"
4519
+ ],
4520
+ "properties": {
4521
+ "yesNo": {
4522
+ "ta6Ref": "5.1a1",
4523
+ "enum": [
4524
+ "Yes",
4525
+ "No"
4526
+ ]
4527
+ }
4528
+ }
4529
+ },
4530
+ "roofingWork": {
4531
+ "ta6Ref": "5.1f",
4532
+ "title": "Roofing work",
4533
+ "discriminator": {
4534
+ "propertyName": "yesNo"
4535
+ },
4536
+ "oneOf": [
4537
+ {
4538
+ "properties": {
4539
+ "yesNo": {
4540
+ "enum": [
4541
+ "No"
4542
+ ]
4543
+ }
4544
+ }
4545
+ },
4546
+ {
4547
+ "properties": {
4548
+ "yesNo": {
4549
+ "enum": [
4550
+ "Yes"
4551
+ ]
4552
+ },
4553
+ "attachments": {
4554
+ "ta6Ref": "5.1f2",
4555
+ "enum": [
4556
+ "Attached",
4557
+ "To follow"
4558
+ ]
4559
+ }
4560
+ },
4561
+ "required": [
4562
+ "attachments"
4563
+ ]
4564
+ }
4565
+ ],
4566
+ "required": [
4567
+ "yesNo"
4568
+ ],
4569
+ "properties": {
4570
+ "yesNo": {
4571
+ "ta6Ref": "5.1f1",
4572
+ "enum": [
4573
+ "Yes",
4574
+ "No"
4575
+ ]
4576
+ }
4577
+ }
4578
+ },
4579
+ "dampProofingTreatment": {
4580
+ "ta6Ref": "5.1b",
4581
+ "title": "Damp proofing treatment",
4582
+ "discriminator": {
4583
+ "propertyName": "yesNo"
4584
+ },
4585
+ "oneOf": [
4586
+ {
4587
+ "properties": {
4588
+ "yesNo": {
4589
+ "enum": [
4590
+ "No"
4591
+ ]
4592
+ }
4593
+ }
4594
+ },
4595
+ {
4596
+ "properties": {
4597
+ "yesNo": {
4598
+ "enum": [
4599
+ "Yes"
4600
+ ]
4601
+ },
4602
+ "attachments": {
4603
+ "ta6Ref": "5.1b2",
4604
+ "enum": [
4605
+ "Attached",
4606
+ "To follow"
4607
+ ]
4608
+ }
4609
+ },
4610
+ "required": [
4611
+ "attachments"
4612
+ ]
4613
+ }
4614
+ ],
4615
+ "required": [
4616
+ "yesNo"
4617
+ ],
4618
+ "properties": {
4619
+ "yesNo": {
4620
+ "ta6Ref": "5.1b1",
4621
+ "enum": [
4622
+ "Yes",
4623
+ "No"
4624
+ ]
4625
+ }
4626
+ }
4627
+ },
4628
+ "timberRotOrInfestationTreatment": {
4629
+ "ta6Ref": "5.1c",
4630
+ "title": "Timber rot or infestation treatment",
4631
+ "discriminator": {
4632
+ "propertyName": "yesNo"
4633
+ },
4634
+ "oneOf": [
4635
+ {
4636
+ "properties": {
4637
+ "yesNo": {
4638
+ "enum": [
4639
+ "No"
4640
+ ]
4641
+ }
4642
+ }
4643
+ },
4644
+ {
4645
+ "properties": {
4646
+ "yesNo": {
4647
+ "enum": [
4648
+ "Yes"
4649
+ ]
4650
+ },
4651
+ "attachments": {
4652
+ "ta6Ref": "5.1c2",
4653
+ "enum": [
4654
+ "Attached",
4655
+ "To follow"
4656
+ ]
4657
+ }
4658
+ },
4659
+ "required": [
4660
+ "attachments"
4661
+ ]
4662
+ }
4663
+ ],
4664
+ "required": [
4665
+ "yesNo"
4666
+ ],
4667
+ "properties": {
4668
+ "yesNo": {
4669
+ "ta6Ref": "5.1c1",
4670
+ "enum": [
4671
+ "Yes",
4672
+ "No"
4673
+ ]
4674
+ }
4675
+ }
4676
+ },
4677
+ "centralHeatingAndorPlumbing": {
4678
+ "ta6Ref": "5.1g",
4679
+ "title": "Central heating and/or plumbing",
4680
+ "discriminator": {
4681
+ "propertyName": "yesNo"
4682
+ },
4683
+ "oneOf": [
4684
+ {
4685
+ "properties": {
4686
+ "yesNo": {
4687
+ "enum": [
4688
+ "No"
4689
+ ]
4690
+ }
4691
+ }
4692
+ },
4693
+ {
4694
+ "properties": {
4695
+ "yesNo": {
4696
+ "enum": [
4697
+ "Yes"
4698
+ ]
4699
+ },
4700
+ "attachments": {
4701
+ "ta6Ref": "5.1g2",
4702
+ "enum": [
4703
+ "Attached",
4704
+ "To follow"
4705
+ ]
4706
+ }
4707
+ },
4708
+ "required": [
4709
+ "attachments"
4710
+ ]
4711
+ }
4712
+ ],
4713
+ "required": [
4714
+ "yesNo"
4715
+ ],
4716
+ "properties": {
4717
+ "yesNo": {
4718
+ "ta6Ref": "5.1g1",
4719
+ "enum": [
4720
+ "Yes",
4721
+ "No"
4722
+ ]
4723
+ }
4724
+ }
4725
+ },
4726
+ "doubleGlazing": {
4727
+ "ta6Ref": "5.1d",
4728
+ "title": "Double glazing (windows, doors, roof lights, conservatory etc)",
4729
+ "discriminator": {
4730
+ "propertyName": "yesNo"
4731
+ },
4732
+ "oneOf": [
4733
+ {
4734
+ "properties": {
4735
+ "yesNo": {
4736
+ "enum": [
4737
+ "No"
4738
+ ]
4739
+ }
4740
+ }
4741
+ },
4742
+ {
4743
+ "properties": {
4744
+ "yesNo": {
4745
+ "enum": [
4746
+ "Yes"
4747
+ ]
4748
+ },
4749
+ "attachments": {
4750
+ "ta6Ref": "5.1d2",
4751
+ "enum": [
4752
+ "Attached",
4753
+ "To follow"
4754
+ ]
4755
+ }
4756
+ },
4757
+ "required": [
4758
+ "attachments"
4759
+ ]
4760
+ }
4761
+ ],
4762
+ "required": [
4763
+ "yesNo"
4764
+ ],
4765
+ "properties": {
4766
+ "yesNo": {
4767
+ "ta6Ref": "5.1d1",
4768
+ "enum": [
4769
+ "Yes",
4770
+ "No"
4771
+ ]
4772
+ }
4773
+ }
4774
+ },
4775
+ "electricalRepairOrInstallation": {
4776
+ "ta6Ref": "5.1e",
4777
+ "title": "Electrical repair or installation",
4778
+ "discriminator": {
4779
+ "propertyName": "yesNo"
4780
+ },
4781
+ "oneOf": [
4782
+ {
4783
+ "properties": {
4784
+ "yesNo": {
4785
+ "enum": [
4786
+ "No"
4787
+ ]
4788
+ }
4789
+ }
4790
+ },
4791
+ {
4792
+ "properties": {
4793
+ "yesNo": {
4794
+ "enum": [
4795
+ "Yes"
4796
+ ]
4797
+ },
4798
+ "attachments": {
4799
+ "ta6Ref": "5.1e2",
4800
+ "enum": [
4801
+ "Attached",
4802
+ "To follow"
4803
+ ]
4804
+ }
4805
+ },
4806
+ "required": [
4807
+ "attachments"
4808
+ ]
4809
+ }
4810
+ ],
4811
+ "required": [
4812
+ "yesNo"
4813
+ ],
4814
+ "properties": {
4815
+ "yesNo": {
4816
+ "ta6Ref": "5.1e1",
4817
+ "enum": [
4818
+ "Yes",
4819
+ "No"
4820
+ ]
4821
+ }
4822
+ }
4823
+ },
4824
+ "subsidenceWork": {
4825
+ "ta6Ref": "5.1h",
4826
+ "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
4827
+ "discriminator": {
4828
+ "propertyName": "yesNo"
4829
+ },
4830
+ "oneOf": [
4831
+ {
4832
+ "properties": {
4833
+ "yesNo": {
4834
+ "enum": [
4835
+ "No"
4836
+ ]
4837
+ }
4838
+ }
4839
+ },
4840
+ {
4841
+ "properties": {
4842
+ "yesNo": {
4843
+ "enum": [
4844
+ "Yes"
4845
+ ]
4846
+ },
4847
+ "attachments": {
4848
+ "ta6Ref": "5.1h2",
4849
+ "enum": [
4850
+ "Attached",
4851
+ "To follow"
4852
+ ]
4853
+ }
4854
+ },
4855
+ "required": [
4856
+ "attachments"
4857
+ ]
4858
+ }
4859
+ ],
4860
+ "required": [
4861
+ "yesNo"
4862
+ ],
4863
+ "properties": {
4864
+ "yesNo": {
4865
+ "ta6Ref": "5.1h1",
4866
+ "enum": [
4867
+ "Yes",
4868
+ "No"
4869
+ ]
4870
+ }
4871
+ }
4872
+ },
4873
+ "otherGuarantees": {
4874
+ "ta6Ref": "5.1i",
4875
+ "title": "Other Guarantees or warranties",
4876
+ "discriminator": {
4877
+ "propertyName": "yesNo"
4878
+ },
4879
+ "oneOf": [
4880
+ {
4881
+ "properties": {
4882
+ "yesNo": {
4883
+ "enum": [
4884
+ "No"
4885
+ ]
4886
+ }
4887
+ }
4888
+ },
4889
+ {
4890
+ "properties": {
4891
+ "yesNo": {
4892
+ "enum": [
4893
+ "Yes"
4894
+ ]
4895
+ },
4896
+ "details": {
4897
+ "ta6Ref": "5.1i2",
4898
+ "title": "Please provide details"
4899
+ },
4900
+ "attachments": {
4901
+ "ta6Ref": "5.1i3",
4902
+ "enum": [
4903
+ "Attached",
4904
+ "To follow"
4905
+ ]
4906
+ }
4907
+ },
4908
+ "required": [
4909
+ "details",
4910
+ "attachments"
4911
+ ]
4912
+ }
4913
+ ],
4914
+ "required": [
4915
+ "yesNo"
4916
+ ],
4917
+ "properties": {
4918
+ "yesNo": {
4919
+ "ta6Ref": "5.1i1",
4920
+ "enum": [
4921
+ "Yes",
4922
+ "No"
4923
+ ]
4924
+ }
4925
+ }
4926
+ },
4927
+ "outstandingClaimsOrApplications": {
4928
+ "ta6Ref": "5.2",
4929
+ "title": "Are there any outstanding claims or current applications relating to any of the above?",
4930
+ "discriminator": {
4931
+ "propertyName": "yesNo"
4932
+ },
4933
+ "oneOf": [
4934
+ {
4935
+ "properties": {
4936
+ "yesNo": {
4937
+ "enum": [
4938
+ "No"
4939
+ ]
4940
+ }
4941
+ }
4942
+ },
4943
+ {
4944
+ "properties": {
4945
+ "yesNo": {
4946
+ "enum": [
4947
+ "Yes"
4948
+ ]
4949
+ },
4950
+ "details": {
4951
+ "ta6Ref": "5.2.2",
4952
+ "title": "Please provide details"
4953
+ },
4954
+ "attachments": {
4955
+ "ta6Ref": "5.2.3",
4956
+ "enum": [
4957
+ "Attached",
4958
+ "To follow"
4959
+ ]
4960
+ }
4961
+ },
4962
+ "required": [
4963
+ "details"
4964
+ ]
4965
+ }
4966
+ ],
4967
+ "required": [
4968
+ "yesNo"
4969
+ ],
4970
+ "properties": {
4971
+ "yesNo": {
4972
+ "ta6Ref": "5.2.1",
4973
+ "enum": [
4974
+ "Yes",
4975
+ "No"
4976
+ ]
4977
+ }
4978
+ }
4979
+ }
4980
+ },
4981
+ "required": [
4982
+ "newHomeWarranty",
4983
+ "roofingWork",
4984
+ "dampProofingTreatment",
4985
+ "timberRotOrInfestationTreatment",
4986
+ "centralHeatingAndorPlumbing",
4987
+ "doubleGlazing",
4988
+ "electricalRepairOrInstallation",
4989
+ "subsidenceWork",
4990
+ "otherGuarantees",
4991
+ "outstandingClaimsOrApplications"
4992
+ ]
4993
+ }
4994
+ ],
4995
+ "required": [
4996
+ "hasValidGuaranteesOrWarranties"
4997
+ ],
4998
+ "properties": {
4999
+ "hasValidGuaranteesOrWarranties": {
5000
+ "ta6Ref": "5/1",
5001
+ "title": "Are there any valid guarantees or warranties relating to this property?",
5002
+ "enum": [
5003
+ "Yes",
5004
+ "No"
5005
+ ]
5006
+ }
5007
+ }
5008
+ },
5009
+ "occupiers": {
5010
+ "ta6Ref": "11",
5011
+ "title": "Occupiers",
5012
+ "required": [
5013
+ "sellerLivesAtProperty",
5014
+ "othersAged17OrOver"
5015
+ ],
5016
+ "properties": {
5017
+ "sellerLivesAtProperty": {
5018
+ "ta6Ref": "11.1",
5019
+ "title": "Does the seller live at the property?",
5020
+ "required": [
5021
+ "yesNo"
5022
+ ],
5023
+ "properties": {
5024
+ "yesNo": {
5025
+ "ta6Ref": "11.1.1",
5026
+ "enum": [
5027
+ "Yes",
5028
+ "No"
5029
+ ]
5030
+ }
5031
+ }
5032
+ },
5033
+ "othersAged17OrOver": {
5034
+ "ta6Ref": "11.2",
5035
+ "discriminator": {
5036
+ "propertyName": "hasOthersAged17OrOver"
5037
+ },
5038
+ "oneOf": [
5039
+ {
5040
+ "properties": {
5041
+ "hasOthersAged17OrOver": {
5042
+ "enum": [
5043
+ "No"
5044
+ ]
5045
+ }
5046
+ }
5047
+ },
5048
+ {
5049
+ "properties": {
5050
+ "hasOthersAged17OrOver": {
5051
+ "enum": [
5052
+ "Yes"
5053
+ ]
5054
+ },
5055
+ "aged17OrOverNames": {
5056
+ "ta6Ref": "11.3",
5057
+ "title": "Please provide their full names and ages."
5058
+ },
5059
+ "aged17OrOverTenantsOrLodgers": {
5060
+ "ta6Ref": "11.4",
5061
+ "title": "Are any of them tenants or lodgers?",
5062
+ "required": [
5063
+ "yesNo"
5064
+ ],
5065
+ "properties": {
5066
+ "yesNo": {
5067
+ "ta6Ref": "11.4.1",
5068
+ "enum": [
5069
+ "Yes",
5070
+ "No"
5071
+ ]
5072
+ }
5073
+ }
5074
+ },
5075
+ "vacantPossession": {
5076
+ "ta6Ref": "11.5",
5077
+ "discriminator": {
5078
+ "propertyName": "soldWithVacantPossession"
5079
+ },
5080
+ "oneOf": [
5081
+ {
5082
+ "properties": {
5083
+ "soldWithVacantPossession": {
5084
+ "enum": [
5085
+ "No"
5086
+ ]
5087
+ }
5088
+ }
5089
+ },
5090
+ {
5091
+ "properties": {
5092
+ "soldWithVacantPossession": {
5093
+ "enum": [
5094
+ "Yes"
5095
+ ]
5096
+ },
5097
+ "aged17OrOverAgreedToLeave": {
5098
+ "ta6Ref": "11.5a",
5099
+ "title": "Have all occupiers aged 17 or over agreed to leave prior to completion?",
5100
+ "required": [
5101
+ "yesNo"
5102
+ ],
5103
+ "properties": {
5104
+ "yesNo": {
5105
+ "ta6Ref": "11.5a1",
5106
+ "enum": [
5107
+ "Yes",
5108
+ "No"
5109
+ ]
5110
+ }
5111
+ }
5112
+ },
5113
+ "aged17OrOverWillSignToConfirmWillVacate": {
5114
+ "ta6Ref": "11.5b",
5115
+ "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?",
5116
+ "discriminator": {
5117
+ "propertyName": "yesNo"
5118
+ },
5119
+ "oneOf": [
5120
+ {
5121
+ "properties": {
5122
+ "yesNo": {
5123
+ "enum": [
5124
+ "Yes"
5125
+ ]
5126
+ }
5127
+ }
5128
+ },
5129
+ {
5130
+ "properties": {
5131
+ "yesNo": {
5132
+ "enum": [
5133
+ "No"
5134
+ ]
5135
+ },
5136
+ "attachments": {
5137
+ "ta6Ref": "11.5b2",
5138
+ "title": "Please supply other evidence that the property will be vacant on completion (a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them).",
5139
+ "enum": [
5140
+ "Attached",
5141
+ "To follow"
5142
+ ]
5143
+ }
5144
+ },
5145
+ "required": [
5146
+ "attachments"
5147
+ ]
5148
+ }
5149
+ ],
5150
+ "required": [
5151
+ "yesNo"
5152
+ ],
5153
+ "properties": {
5154
+ "yesNo": {
5155
+ "ta6Ref": "11.5b1",
5156
+ "enum": [
5157
+ "Yes",
5158
+ "No"
5159
+ ]
5160
+ }
5161
+ }
5162
+ }
5163
+ },
5164
+ "required": [
5165
+ "aged17OrOverAgreedToLeave",
5166
+ "aged17OrOverWillSignToConfirmWillVacate"
5167
+ ]
5168
+ }
5169
+ ],
5170
+ "required": [
5171
+ "soldWithVacantPossession"
5172
+ ],
5173
+ "properties": {
5174
+ "soldWithVacantPossession": {
5175
+ "ta6Ref": "11.5.1",
5176
+ "title": "Is the property being sold with vacant possession?",
5177
+ "enum": [
5178
+ "Yes",
5179
+ "No"
5180
+ ]
5181
+ }
5182
+ }
5183
+ }
5184
+ },
5185
+ "required": [
5186
+ "aged17OrOverNames",
5187
+ "aged17OrOverTenantsOrLodgers",
5188
+ "vacantPossession"
5189
+ ]
5190
+ }
5191
+ ],
5192
+ "required": [
5193
+ "hasOthersAged17OrOver"
5194
+ ],
5195
+ "properties": {
5196
+ "hasOthersAged17OrOver": {
5197
+ "ta6Ref": "11.2",
5198
+ "title": "Other than the sellers, does anyone else aged 17 or over, live at the property?",
5199
+ "enum": [
5200
+ "Yes",
5201
+ "No"
5202
+ ]
5203
+ }
5204
+ }
5205
+ }
5206
+ }
5207
+ },
5208
+ "completionAndMoving": {
5209
+ "ta6Ref": "14",
5210
+ "title": "Completion and Moving",
5211
+ "required": [
5212
+ "willRemoveAllRubbish",
5213
+ "otherPropertyInChain",
5214
+ "moveRestrictionDates",
5215
+ "digitalPropertyLogbook",
5216
+ "sufficientToRepayAllMortgages"
5217
+ ],
5218
+ "properties": {
5219
+ "willRemoveAllRubbish": {
5220
+ "ta6Ref": "14.4",
5221
+ "title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
5222
+ "description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services e.g. doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know."
5223
+ },
5224
+ "otherPropertyInChain": {
5225
+ "ta6Ref": "14.1",
5226
+ "title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
5227
+ "discriminator": {
5228
+ "propertyName": "yesNo"
5229
+ },
5230
+ "oneOf": [
5231
+ {
5232
+ "properties": {
5233
+ "yesNo": {
5234
+ "enum": [
5235
+ "No"
5236
+ ]
5237
+ }
5238
+ }
5239
+ },
5240
+ {
5241
+ "properties": {
5242
+ "yesNo": {
5243
+ "enum": [
5244
+ "Yes"
5245
+ ]
5246
+ }
5247
+ }
5248
+ }
5249
+ ],
5250
+ "required": [
5251
+ "yesNo"
5252
+ ],
5253
+ "properties": {
5254
+ "yesNo": {
5255
+ "ta6Ref": "14.1.1",
5256
+ "enum": [
5257
+ "Yes",
5258
+ "No"
5259
+ ]
5260
+ }
5261
+ }
5262
+ },
5263
+ "moveRestrictionDates": {
5264
+ "ta6Ref": "14.2",
5265
+ "title": "Are there any dates on which you cannot move?",
5266
+ "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.",
5267
+ "discriminator": {
5268
+ "propertyName": "yesNo"
5269
+ },
5270
+ "oneOf": [
5271
+ {
5272
+ "properties": {
5273
+ "yesNo": {
5274
+ "enum": [
5275
+ "No"
5276
+ ]
5277
+ }
5278
+ }
5279
+ },
5280
+ {
5281
+ "properties": {
5282
+ "yesNo": {
5283
+ "enum": [
5284
+ "Yes"
5285
+ ]
5286
+ }
5287
+ },
5288
+ "required": [
5289
+ "details"
5290
+ ]
5291
+ }
5292
+ ],
5293
+ "required": [
5294
+ "yesNo"
5295
+ ]
5296
+ },
5297
+ "sufficientToRepayAllMortgages": {
5298
+ "ta6Ref": "14.3",
5299
+ "title": "Will the sale price be sufficient to repay all mortgages and charges secured on the property?",
5300
+ "required": [
5301
+ "yesNo"
5302
+ ]
5303
+ }
5304
+ }
5305
+ },
5306
+ "confirmationOfAccuracyByOwners": {
5307
+ "ta6Ref": "14.5",
5308
+ "title": "Confirmation to be supplied by all owners or their representative",
5309
+ "required": [
5310
+ "confirmInformationIsAccurate"
5311
+ ],
5312
+ "properties": {
5313
+ "confirmInformationIsAccurate": {
5314
+ "ta6Ref": "14.5.1",
5315
+ "title": "I/we confirm that all information provided is accurate to the best of our knowledge and if we become aware of any change to/changes which alter the information supplied/provided prior to exchange of contracts for the sale of the property, I/we will update immediately notify the person marketing the property as well as my/our property lawyer"
2342
5316
  }
2343
5317
  }
2344
5318
  }