@pdtf/schemas 1.1.2 → 2.0.0-0

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 (30) hide show
  1. package/index.js +86 -19
  2. package/package.json +5 -3
  3. package/src/examples/v2/exampleTransaction.json +899 -0
  4. package/src/schemas/v1/freehold-information.json +2051 -0
  5. package/src/schemas/v1/material-facts.json +3 -3
  6. package/src/schemas/v2/baspiNotes.html +102 -0
  7. package/src/schemas/v2/combined.json +27796 -0
  8. package/src/schemas/v2/core.json +26224 -0
  9. package/src/schemas/v2/overlays/baspi.json +8857 -0
  10. package/src/schemas/v2/overlays/con29DW.json +656 -0
  11. package/src/schemas/v2/overlays/con29R.json +3115 -0
  12. package/src/schemas/v2/overlays/fme1.json +1610 -0
  13. package/src/schemas/v2/overlays/llc1.json +46 -0
  14. package/src/schemas/v2/overlays/lpe1.json +2424 -0
  15. package/src/schemas/v2/overlays/nts.json +162 -0
  16. package/src/schemas/v2/overlays/oc1.json +2799 -0
  17. package/src/schemas/v2/overlays/rds.json +3746 -0
  18. package/src/schemas/v2/overlays/ta10.json +4 -0
  19. package/src/schemas/v2/overlays/ta6.json +2311 -0
  20. package/src/schemas/v2/overlays/ta7.json +901 -0
  21. package/src/tests/{pdtfVerifiedClaims.test.js → v1/pdtfVerifiedClaims.test.js} +4 -4
  22. package/src/tests/{transactionSchema.test.js → v1/transactionSchema.test.js} +3 -3
  23. package/src/tests/{verifiedClaimsValidator.test.js → v1/verifiedClaimsValidator.test.js} +3 -3
  24. package/src/tests/v2/transactionSchema.test.js +255 -0
  25. package/src/utils/extractOverlay.js +100 -0
  26. /package/src/examples/{exampleAddParticipantVouch.json → v1/exampleAddParticipantVouch.json} +0 -0
  27. /package/src/examples/{exampleDocumentedVouch.json → v1/exampleDocumentedVouch.json} +0 -0
  28. /package/src/examples/{exampleElectronicRecord.json → v1/exampleElectronicRecord.json} +0 -0
  29. /package/src/examples/{exampleTransaction.json → v1/exampleTransaction.json} +0 -0
  30. /package/src/examples/{exampleVouch.json → v1/exampleVouch.json} +0 -0
@@ -0,0 +1,2311 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v2/overlays/ta6.json",
4
+ "properties": {
5
+ "propertyPack": {
6
+ "properties": {
7
+ "materialFacts": {
8
+ "properties": {
9
+ "address": {
10
+ "ta6Ref": "0.1",
11
+ "title": "Property Address",
12
+ "properties": {
13
+ "line1": {
14
+ "ta6Ref": "0.1.1",
15
+ "title": "Address line 1"
16
+ },
17
+ "line2": {
18
+ "ta6Ref": "0.1.2",
19
+ "title": "Address line 2"
20
+ },
21
+ "line3": {
22
+ "ta6Ref": "0.1.3",
23
+ "title": "Address line 3"
24
+ },
25
+ "town": {
26
+ "ta6Ref": "0.1.4",
27
+ "title": "Town"
28
+ },
29
+ "postcode": {
30
+ "ta6Ref": "0.1.5",
31
+ "title": "Postcode"
32
+ }
33
+ }
34
+ },
35
+ "parking": {
36
+ "ta6Ref": "9",
37
+ "title": "Parking",
38
+ "properties": {
39
+ "parkingArrangements": {
40
+ "ta6Ref": "9.1",
41
+ "title": "Parking arrangements",
42
+ "discriminator": {
43
+ "propertyName": "parkingArrangementsType"
44
+ },
45
+ "oneOf": [
46
+ {
47
+ "properties": {
48
+ "parkingArrangementsType": {
49
+ "enum": [
50
+ "Garage",
51
+ "Allocated parking space",
52
+ "Driveway",
53
+ "On street",
54
+ "Resident permit",
55
+ "Metered parking",
56
+ "Communal parking",
57
+ "None"
58
+ ]
59
+ }
60
+ }
61
+ },
62
+ {
63
+ "properties": {
64
+ "parkingArrangementsType": {
65
+ "enum": [
66
+ "Other"
67
+ ]
68
+ }
69
+ }
70
+ }
71
+ ]
72
+ },
73
+ "controlledParking": {
74
+ "ta6Ref": "9.2",
75
+ "title": "Is the property in a controlled parking zone or within a local authority parking scheme?"
76
+ }
77
+ }
78
+ },
79
+ "listingAndConservation": {
80
+ "ta6Ref": "4.7",
81
+ "title": "Listing and Conservation",
82
+ "properties": {
83
+ "isListed": {
84
+ "ta6Ref": "4.7a",
85
+ "title": "Is the property a listed building in England or Wales?",
86
+ "discriminator": {
87
+ "propertyName": "yesNo"
88
+ },
89
+ "oneOf": [
90
+ {
91
+ "properties": {
92
+ "yesNo": {
93
+ "enum": [
94
+ "No"
95
+ ]
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "properties": {
101
+ "yesNo": {
102
+ "enum": [
103
+ "Yes"
104
+ ]
105
+ }
106
+ }
107
+ }
108
+ ]
109
+ },
110
+ "isConservationArea": {
111
+ "ta6Ref": "4.7b",
112
+ "title": "Is the property in a designated conservation area?",
113
+ "discriminator": {
114
+ "propertyName": "yesNo"
115
+ },
116
+ "oneOf": [
117
+ {
118
+ "properties": {
119
+ "yesNo": {
120
+ "enum": [
121
+ "No"
122
+ ]
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "properties": {
128
+ "yesNo": {
129
+ "enum": [
130
+ "Yes"
131
+ ]
132
+ }
133
+ }
134
+ }
135
+ ]
136
+ },
137
+ "hasTreePreservationOrder": {
138
+ "ta6Ref": "4.8",
139
+ "title": "To your knowledge, does a tree preservation order apply to any trees within the boundaries of the property?",
140
+ "discriminator": {
141
+ "propertyName": "yesNo"
142
+ },
143
+ "oneOf": [
144
+ {
145
+ "properties": {
146
+ "yesNo": {
147
+ "enum": [
148
+ "No"
149
+ ]
150
+ }
151
+ }
152
+ },
153
+ {
154
+ "properties": {
155
+ "yesNo": {
156
+ "enum": [
157
+ "Yes"
158
+ ]
159
+ },
160
+ "workCarriedOut": {
161
+ "ta6Ref": "4.8a",
162
+ "title": "Has work been carried out to any trees which are protected by the order?",
163
+ "discriminator": {
164
+ "propertyName": "yesNo"
165
+ },
166
+ "oneOf": [
167
+ {
168
+ "properties": {
169
+ "yesNo": {
170
+ "enum": [
171
+ "No"
172
+ ]
173
+ }
174
+ }
175
+ },
176
+ {
177
+ "properties": {
178
+ "yesNo": {
179
+ "enum": [
180
+ "Yes"
181
+ ]
182
+ }
183
+ }
184
+ }
185
+ ]
186
+ }
187
+ }
188
+ }
189
+ ]
190
+ }
191
+ }
192
+ },
193
+ "energyEfficiency": {
194
+ "properties": {
195
+ "certificate": {
196
+ "properties": {
197
+ "currentEnergyRating": {
198
+ "ta6Ref": "7.6",
199
+ "title": "Current energy efficiency rating",
200
+ "description": "What is the energy efficiency rating of the property according to the latest Energy Performance Certificate (EPC)?",
201
+ "enum": [
202
+ "A",
203
+ "B",
204
+ "C",
205
+ "D",
206
+ "E",
207
+ "F",
208
+ "G",
209
+ "Exempt Property",
210
+ "Survey Instructed",
211
+ "No Certificate"
212
+ ]
213
+ }
214
+ }
215
+ }
216
+ }
217
+ },
218
+ "disputesAndComplaints": {
219
+ "properties": {
220
+ "hasDisputesAndComplaints": {
221
+ "ta6Ref": "2.1",
222
+ "title": "Have any disputes or complaints occurred, regarding this property, a property nearby, or their use?",
223
+ "description": "E.g boundary disagreement, noise, trespass etc",
224
+ "discriminator": {
225
+ "propertyName": "yesNo"
226
+ },
227
+ "oneOf": [
228
+ {
229
+ "properties": {
230
+ "yesNo": {
231
+ "enum": [
232
+ "No"
233
+ ]
234
+ }
235
+ }
236
+ },
237
+ {
238
+ "properties": {
239
+ "yesNo": {
240
+ "enum": [
241
+ "Yes"
242
+ ]
243
+ }
244
+ }
245
+ }
246
+ ]
247
+ },
248
+ "leadingToDisputesAndComplaints": {
249
+ "ta6Ref": "2.2",
250
+ "title": "Is the seller aware of anything which might lead to a dispute about the property or a property nearby?",
251
+ "discriminator": {
252
+ "propertyName": "yesNo"
253
+ },
254
+ "oneOf": [
255
+ {
256
+ "properties": {
257
+ "yesNo": {
258
+ "enum": [
259
+ "No"
260
+ ]
261
+ }
262
+ }
263
+ },
264
+ {
265
+ "properties": {
266
+ "yesNo": {
267
+ "enum": [
268
+ "Yes"
269
+ ]
270
+ }
271
+ }
272
+ }
273
+ ]
274
+ }
275
+ }
276
+ },
277
+ "alterationsAndChanges": {
278
+ "ta6Ref": "4.1",
279
+ "title": "Alterations and Changes to the Property",
280
+ "description": "Have any of the following changes been made to the whole or any part of the property (including the garden)?",
281
+ "properties": {
282
+ "hasStructuralAlterations": {
283
+ "ta6Ref": "4.1a",
284
+ "title": "Have there been any structural alterations, extensions, significant repairs or renewals to the property? (e.g. extensions, loft or garage conversion, removal of internal walls or chimneys)",
285
+ "discriminator": {
286
+ "propertyName": "yesNo"
287
+ },
288
+ "oneOf": [
289
+ {
290
+ "properties": {
291
+ "yesNo": {
292
+ "enum": [
293
+ "No"
294
+ ]
295
+ }
296
+ }
297
+ },
298
+ {
299
+ "properties": {
300
+ "yesNo": {
301
+ "enum": [
302
+ "Yes"
303
+ ]
304
+ },
305
+ "details": {
306
+ "ta6Ref": "4.1a1",
307
+ "title": "Please give details including dates of all work undertaken"
308
+ },
309
+ "buildingRegApproval": {
310
+ "ta6Ref": "4.2",
311
+ "title": "Was Building Regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
312
+ "discriminator": {
313
+ "propertyName": "yesNo"
314
+ },
315
+ "oneOf": [
316
+ {
317
+ "properties": {
318
+ "yesNo": {
319
+ "enum": [
320
+ "Yes"
321
+ ]
322
+ },
323
+ "attachments": {
324
+ "ta6Ref": "4.2.2",
325
+ "title": "Please provide a copy of the documents",
326
+ "enum": [
327
+ "Attached",
328
+ "To follow"
329
+ ]
330
+ }
331
+ }
332
+ },
333
+ {
334
+ "properties": {
335
+ "yesNo": {
336
+ "enum": [
337
+ "No",
338
+ "Not required"
339
+ ]
340
+ },
341
+ "details": {
342
+ "ta6Ref": "4.2.3",
343
+ "title": "Please outline the reasons why",
344
+ "description": "e.g. the work was exempt from Building Regulations"
345
+ }
346
+ }
347
+ }
348
+ ],
349
+ "properties": {
350
+ "yesNo": {
351
+ "ta6Ref": "4.2.1",
352
+ "enum": [
353
+ "Yes",
354
+ "No",
355
+ "Not required"
356
+ ]
357
+ }
358
+ }
359
+ },
360
+ "planningPermission": {
361
+ "ta6Ref": "4.2.1",
362
+ "title": "Was planning permission obtained?",
363
+ "discriminator": {
364
+ "propertyName": "yesNo"
365
+ },
366
+ "oneOf": [
367
+ {
368
+ "properties": {
369
+ "yesNo": {
370
+ "enum": [
371
+ "Yes"
372
+ ]
373
+ },
374
+ "attachments": {
375
+ "ta6Ref": "4.2.2",
376
+ "title": "Please provide a copy of the documents",
377
+ "enum": [
378
+ "Attached",
379
+ "To follow"
380
+ ]
381
+ }
382
+ }
383
+ },
384
+ {
385
+ "properties": {
386
+ "yesNo": {
387
+ "enum": [
388
+ "No",
389
+ "Not required"
390
+ ]
391
+ },
392
+ "details": {
393
+ "ta6Ref": "4.2.3",
394
+ "title": "Please outline the reasons why",
395
+ "description": "e.g. permitted development rights applied"
396
+ }
397
+ }
398
+ }
399
+ ]
400
+ }
401
+ }
402
+ }
403
+ ],
404
+ "properties": {
405
+ "yesNo": {
406
+ "ta6Ref": "4.1a1",
407
+ "enum": [
408
+ "Yes",
409
+ "No"
410
+ ]
411
+ }
412
+ }
413
+ },
414
+ "changeOfUse": {
415
+ "ta6Ref": "4.1b",
416
+ "title": "Has there been any change of use (e.g. from an office to a residence?",
417
+ "discriminator": {
418
+ "propertyName": "yesNo"
419
+ },
420
+ "oneOf": [
421
+ {
422
+ "properties": {
423
+ "yesNo": {
424
+ "enum": [
425
+ "No"
426
+ ]
427
+ }
428
+ }
429
+ },
430
+ {
431
+ "properties": {
432
+ "yesNo": {
433
+ "enum": [
434
+ "Yes"
435
+ ]
436
+ },
437
+ "buildingRegApproval": {
438
+ "ta6Ref": "4.2",
439
+ "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
440
+ "discriminator": {
441
+ "propertyName": "yesNo"
442
+ },
443
+ "oneOf": [
444
+ {
445
+ "properties": {
446
+ "yesNo": {
447
+ "enum": [
448
+ "Yes"
449
+ ]
450
+ },
451
+ "attachments": {
452
+ "ta6Ref": "4.2.2",
453
+ "title": "Please provide a copy of the documents",
454
+ "enum": [
455
+ "Attached",
456
+ "To follow"
457
+ ]
458
+ }
459
+ }
460
+ },
461
+ {
462
+ "properties": {
463
+ "yesNo": {
464
+ "enum": [
465
+ "No",
466
+ "Not required"
467
+ ]
468
+ },
469
+ "details": {
470
+ "ta6Ref": "4.2.3",
471
+ "title": "Please outline the reasons why",
472
+ "description": "e.g. the work was exempt from Building Regulations"
473
+ }
474
+ }
475
+ }
476
+ ],
477
+ "properties": {
478
+ "yesNo": {
479
+ "ta6Ref": "4.2.1",
480
+ "enum": [
481
+ "Yes",
482
+ "No",
483
+ "Not required"
484
+ ]
485
+ }
486
+ }
487
+ },
488
+ "planningPermission": {
489
+ "ta6Ref": "4.2",
490
+ "title": "Was planning permission obtained?",
491
+ "discriminator": {
492
+ "propertyName": "yesNo"
493
+ },
494
+ "oneOf": [
495
+ {
496
+ "properties": {
497
+ "yesNo": {
498
+ "enum": [
499
+ "Yes"
500
+ ]
501
+ },
502
+ "attachments": {
503
+ "ta6Ref": "4.2.2",
504
+ "title": "Please provide a copy of the documents",
505
+ "enum": [
506
+ "Attached",
507
+ "To follow"
508
+ ]
509
+ }
510
+ }
511
+ },
512
+ {
513
+ "properties": {
514
+ "yesNo": {
515
+ "enum": [
516
+ "No"
517
+ ]
518
+ },
519
+ "details": {
520
+ "ta6Ref": "4.2.3",
521
+ "title": "Please outline the reasons why",
522
+ "description": "e.g. permitted development rights applied"
523
+ }
524
+ }
525
+ }
526
+ ],
527
+ "properties": {
528
+ "yesNo": {
529
+ "ta6Ref": "4.2.1",
530
+ "enum": [
531
+ "Yes",
532
+ "No",
533
+ "Not required"
534
+ ]
535
+ }
536
+ }
537
+ },
538
+ "listedBuildingConsent": {
539
+ "ta6Ref": "4.2",
540
+ "title": "Was listed building consent obtained?",
541
+ "discriminator": {
542
+ "propertyName": "yesNo"
543
+ },
544
+ "oneOf": [
545
+ {
546
+ "properties": {
547
+ "yesNo": {
548
+ "enum": [
549
+ "Yes"
550
+ ]
551
+ }
552
+ }
553
+ },
554
+ {
555
+ "properties": {
556
+ "yesNo": {
557
+ "enum": [
558
+ "No",
559
+ "Not required"
560
+ ]
561
+ }
562
+ }
563
+ }
564
+ ]
565
+ }
566
+ }
567
+ }
568
+ ]
569
+ },
570
+ "windowReplacementsSince2002": {
571
+ "ta6Ref": "4.1c",
572
+ "title": "Since 1st April 2002 has replacement of any windows, roof windows, roof lights, glazed doors taken place?",
573
+ "discriminator": {
574
+ "propertyName": "yesNo"
575
+ },
576
+ "oneOf": [
577
+ {
578
+ "properties": {
579
+ "yesNo": {
580
+ "enum": [
581
+ "No"
582
+ ]
583
+ }
584
+ }
585
+ },
586
+ {
587
+ "properties": {
588
+ "yesNo": {
589
+ "enum": [
590
+ "Yes"
591
+ ]
592
+ },
593
+ "buildingRegApproval": {
594
+ "ta6Ref": "4.2",
595
+ "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
596
+ "discriminator": {
597
+ "propertyName": "yesNo"
598
+ },
599
+ "oneOf": [
600
+ {
601
+ "properties": {
602
+ "yesNo": {
603
+ "enum": [
604
+ "Yes"
605
+ ]
606
+ },
607
+ "attachments": {
608
+ "ta6Ref": "4.2.2",
609
+ "title": "Please provide a copy of the documents",
610
+ "enum": [
611
+ "Attached",
612
+ "To follow"
613
+ ]
614
+ }
615
+ }
616
+ },
617
+ {
618
+ "properties": {
619
+ "yesNo": {
620
+ "enum": [
621
+ "No",
622
+ "Not required"
623
+ ]
624
+ },
625
+ "details": {
626
+ "ta6Ref": "4.2.3",
627
+ "title": "Please outline the reasons why",
628
+ "description": "e.g. the work was exempt from Building Regulations"
629
+ }
630
+ }
631
+ }
632
+ ],
633
+ "properties": {
634
+ "yesNo": {
635
+ "ta6Ref": "4.2.1",
636
+ "enum": [
637
+ "Yes",
638
+ "No",
639
+ "Not required"
640
+ ]
641
+ }
642
+ }
643
+ },
644
+ "planningPermission": {
645
+ "ta6Ref": "4.2",
646
+ "title": "Was planning permission obtained?",
647
+ "discriminator": {
648
+ "propertyName": "yesNo"
649
+ },
650
+ "oneOf": [
651
+ {
652
+ "properties": {
653
+ "yesNo": {
654
+ "enum": [
655
+ "Yes"
656
+ ]
657
+ },
658
+ "attachments": {
659
+ "ta6Ref": "4.2.2",
660
+ "title": "Please provide a copy of the documents",
661
+ "enum": [
662
+ "Attached",
663
+ "To follow"
664
+ ]
665
+ }
666
+ }
667
+ },
668
+ {
669
+ "properties": {
670
+ "yesNo": {
671
+ "enum": [
672
+ "No",
673
+ "Not required"
674
+ ]
675
+ },
676
+ "details": {
677
+ "ta6Ref": "4.2.3",
678
+ "title": "Please outline the reasons why",
679
+ "description": "e.g. permitted development rights applied"
680
+ }
681
+ }
682
+ }
683
+ ],
684
+ "properties": {
685
+ "yesNo": {
686
+ "ta6Ref": "4.2.1",
687
+ "enum": [
688
+ "Yes",
689
+ "No",
690
+ "Not required"
691
+ ]
692
+ }
693
+ }
694
+ },
695
+ "listedBuildingConsent": {
696
+ "oneOf": [
697
+ null,
698
+ {
699
+ "properties": {
700
+ "details": {
701
+ "ta6Ref": "4.2.3",
702
+ "title": "Please outline the reasons why"
703
+ }
704
+ }
705
+ }
706
+ ]
707
+ }
708
+ }
709
+ }
710
+ ]
711
+ },
712
+ "hasAddedConservatory": {
713
+ "ta6Ref": "4.1d",
714
+ "title": "Has a conservatory been added?",
715
+ "discriminator": {
716
+ "propertyName": "yesNo"
717
+ },
718
+ "oneOf": [
719
+ {
720
+ "properties": {
721
+ "yesNo": {
722
+ "enum": [
723
+ "No"
724
+ ]
725
+ }
726
+ }
727
+ },
728
+ {
729
+ "properties": {
730
+ "yesNo": {
731
+ "enum": [
732
+ "Yes"
733
+ ]
734
+ },
735
+ "buildingRegApproval": {
736
+ "ta6Ref": "4.2",
737
+ "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
738
+ "discriminator": {
739
+ "propertyName": "yesNo"
740
+ },
741
+ "oneOf": [
742
+ {
743
+ "properties": {
744
+ "yesNo": {
745
+ "enum": [
746
+ "Yes"
747
+ ]
748
+ },
749
+ "attachments": {
750
+ "ta6Ref": "4.2.2",
751
+ "title": "Please provide a copy of the documents",
752
+ "enum": [
753
+ "Attached",
754
+ "To follow"
755
+ ]
756
+ }
757
+ }
758
+ },
759
+ {
760
+ "properties": {
761
+ "yesNo": {
762
+ "enum": [
763
+ "No",
764
+ "Not required"
765
+ ]
766
+ },
767
+ "details": {
768
+ "ta6Ref": "4.2.3",
769
+ "title": "Please outline the reasons why",
770
+ "description": "e.g. the work was exempt from Building Regulations"
771
+ }
772
+ }
773
+ }
774
+ ],
775
+ "properties": {
776
+ "yesNo": {
777
+ "ta6Ref": "4.2.1",
778
+ "enum": [
779
+ "Yes",
780
+ "No",
781
+ "Not required"
782
+ ]
783
+ }
784
+ }
785
+ },
786
+ "planningPermission": {
787
+ "ta6Ref": "4.2",
788
+ "title": "Was planning permission obtained?",
789
+ "discriminator": {
790
+ "propertyName": "yesNo"
791
+ },
792
+ "oneOf": [
793
+ {
794
+ "properties": {
795
+ "yesNo": {
796
+ "enum": [
797
+ "Yes"
798
+ ]
799
+ },
800
+ "attachments": {
801
+ "ta6Ref": "4.2.2",
802
+ "title": "Please provide a copy of the documents",
803
+ "enum": [
804
+ "Attached",
805
+ "To follow"
806
+ ]
807
+ }
808
+ }
809
+ },
810
+ {
811
+ "properties": {
812
+ "yesNo": {
813
+ "enum": [
814
+ "No",
815
+ "Not required"
816
+ ]
817
+ },
818
+ "details": {
819
+ "ta6Ref": "4.2.3",
820
+ "title": "Please outline the reasons why",
821
+ "description": "e.g. permitted development rights applied"
822
+ }
823
+ }
824
+ }
825
+ ],
826
+ "properties": {
827
+ "yesNo": {
828
+ "ta6Ref": "4.2.1",
829
+ "enum": [
830
+ "Yes",
831
+ "No",
832
+ "Not required"
833
+ ]
834
+ }
835
+ }
836
+ },
837
+ "listedBuildingConsent": {
838
+ "ta6Ref": "4.2",
839
+ "title": "Was listed building consent obtained?",
840
+ "discriminator": {
841
+ "propertyName": "yesNo"
842
+ },
843
+ "oneOf": [
844
+ {
845
+ "properties": {
846
+ "yesNo": {
847
+ "enum": [
848
+ "Yes"
849
+ ]
850
+ }
851
+ }
852
+ },
853
+ {
854
+ "properties": {
855
+ "yesNo": {
856
+ "enum": [
857
+ "No",
858
+ "Not required"
859
+ ]
860
+ }
861
+ }
862
+ }
863
+ ]
864
+ },
865
+ "deedRestrictionConsent": {
866
+ "ta6Ref": "4.2",
867
+ "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",
868
+ "discriminator": {
869
+ "propertyName": "yesNo"
870
+ },
871
+ "oneOf": [
872
+ {
873
+ "properties": {
874
+ "yesNo": {
875
+ "enum": [
876
+ "Yes"
877
+ ]
878
+ }
879
+ }
880
+ },
881
+ {
882
+ "properties": {
883
+ "yesNo": {
884
+ "enum": [
885
+ "No",
886
+ "Not required"
887
+ ]
888
+ }
889
+ }
890
+ }
891
+ ]
892
+ }
893
+ }
894
+ }
895
+ ]
896
+ },
897
+ "worksUnfinished": {
898
+ "ta6Ref": "4.3",
899
+ "title": "Are any of the works listed above unfinished?",
900
+ "description": "If yes, please provide details and explain why.",
901
+ "discriminator": {
902
+ "propertyName": "yesNo"
903
+ },
904
+ "oneOf": [
905
+ {
906
+ "properties": {
907
+ "yesNo": {
908
+ "enum": [
909
+ "No"
910
+ ]
911
+ }
912
+ }
913
+ },
914
+ {
915
+ "properties": {
916
+ "yesNo": {
917
+ "enum": [
918
+ "Yes"
919
+ ]
920
+ }
921
+ }
922
+ }
923
+ ]
924
+ },
925
+ "planningPermissionBreaches": {
926
+ "ta6Ref": "4.4",
927
+ "title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions or work not having the necessary consents?",
928
+ "discriminator": {
929
+ "propertyName": "yesNo"
930
+ },
931
+ "oneOf": [
932
+ {
933
+ "properties": {
934
+ "yesNo": {
935
+ "enum": [
936
+ "No"
937
+ ]
938
+ }
939
+ }
940
+ },
941
+ {
942
+ "properties": {
943
+ "yesNo": {
944
+ "enum": [
945
+ "Yes"
946
+ ]
947
+ }
948
+ }
949
+ }
950
+ ]
951
+ },
952
+ "unresolvedPlanningIssues": {
953
+ "ta6Ref": "4.5",
954
+ "title": "Are you aware of any unresolved planning or building control issues?",
955
+ "discriminator": {
956
+ "propertyName": "yesNo"
957
+ },
958
+ "oneOf": [
959
+ {
960
+ "properties": {
961
+ "yesNo": {
962
+ "enum": [
963
+ "No"
964
+ ]
965
+ }
966
+ }
967
+ },
968
+ {
969
+ "properties": {
970
+ "yesNo": {
971
+ "enum": [
972
+ "Yes"
973
+ ]
974
+ }
975
+ }
976
+ }
977
+ ]
978
+ }
979
+ }
980
+ },
981
+ "notices": {
982
+ "ta6Ref": "3",
983
+ "title": "Notices which Affect the Property",
984
+ "description": "Are you aware of, or have you received, any of the following notices?",
985
+ "properties": {
986
+ "neighbourDevelopment": {
987
+ "ta6Ref": "3.1",
988
+ "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
989
+ "discriminator": {
990
+ "propertyName": "yesNo"
991
+ },
992
+ "oneOf": [
993
+ {
994
+ "properties": {
995
+ "yesNo": {
996
+ "enum": [
997
+ "No"
998
+ ]
999
+ }
1000
+ }
1001
+ },
1002
+ {
1003
+ "properties": {
1004
+ "yesNo": {
1005
+ "enum": [
1006
+ "Yes"
1007
+ ]
1008
+ }
1009
+ }
1010
+ }
1011
+ ]
1012
+ },
1013
+ "planningApplication": {
1014
+ "ta6Ref": "3.2",
1015
+ "title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
1016
+ "discriminator": {
1017
+ "propertyName": "yesNo"
1018
+ },
1019
+ "oneOf": [
1020
+ {
1021
+ "properties": {
1022
+ "yesNo": {
1023
+ "enum": [
1024
+ "No"
1025
+ ]
1026
+ }
1027
+ }
1028
+ },
1029
+ {
1030
+ "properties": {
1031
+ "yesNo": {
1032
+ "enum": [
1033
+ "Yes"
1034
+ ]
1035
+ }
1036
+ }
1037
+ }
1038
+ ]
1039
+ },
1040
+ "requiredMaintenance": {
1041
+ "ta6Ref": "3.1",
1042
+ "title": "Notice informing you that maintenance, repairs or improvements are required to your property?",
1043
+ "discriminator": {
1044
+ "propertyName": "yesNo"
1045
+ },
1046
+ "oneOf": [
1047
+ {
1048
+ "properties": {
1049
+ "yesNo": {
1050
+ "enum": [
1051
+ "No"
1052
+ ]
1053
+ }
1054
+ }
1055
+ },
1056
+ {
1057
+ "properties": {
1058
+ "yesNo": {
1059
+ "enum": [
1060
+ "Yes"
1061
+ ]
1062
+ }
1063
+ }
1064
+ }
1065
+ ]
1066
+ },
1067
+ "listedBuildingApplication": {
1068
+ "ta6Ref": "3.1",
1069
+ "title": "Listed building application",
1070
+ "discriminator": {
1071
+ "propertyName": "yesNo"
1072
+ },
1073
+ "oneOf": [
1074
+ {
1075
+ "properties": {
1076
+ "yesNo": {
1077
+ "enum": [
1078
+ "No"
1079
+ ]
1080
+ }
1081
+ }
1082
+ },
1083
+ {
1084
+ "properties": {
1085
+ "yesNo": {
1086
+ "enum": [
1087
+ "Yes"
1088
+ ]
1089
+ }
1090
+ }
1091
+ }
1092
+ ]
1093
+ },
1094
+ "infrastructureProject": {
1095
+ "ta6Ref": "3.1",
1096
+ "title": "Infrastructure project, proposed or in progress (i.e. wind turbine, railway, fracking, etc)",
1097
+ "discriminator": {
1098
+ "propertyName": "yesNo"
1099
+ },
1100
+ "oneOf": [
1101
+ {
1102
+ "properties": {
1103
+ "yesNo": {
1104
+ "enum": [
1105
+ "No"
1106
+ ]
1107
+ }
1108
+ }
1109
+ },
1110
+ {
1111
+ "properties": {
1112
+ "yesNo": {
1113
+ "enum": [
1114
+ "Yes"
1115
+ ]
1116
+ }
1117
+ }
1118
+ }
1119
+ ]
1120
+ },
1121
+ "partyWallAct": {
1122
+ "ta6Ref": "1.6",
1123
+ "title": "Notice under the Party Wall Act 1996 in respect of any shared or party boundaries?",
1124
+ "discriminator": {
1125
+ "propertyName": "yesNo"
1126
+ },
1127
+ "oneOf": [
1128
+ {
1129
+ "properties": {
1130
+ "yesNo": {
1131
+ "enum": [
1132
+ "No"
1133
+ ]
1134
+ }
1135
+ }
1136
+ },
1137
+ {
1138
+ "properties": {
1139
+ "yesNo": {
1140
+ "enum": [
1141
+ "Yes"
1142
+ ]
1143
+ }
1144
+ }
1145
+ }
1146
+ ]
1147
+ },
1148
+ "otherNotices": {
1149
+ "ta6Ref": "3.1",
1150
+ "title": "Any other type of notice",
1151
+ "discriminator": {
1152
+ "propertyName": "yesNo"
1153
+ },
1154
+ "oneOf": [
1155
+ {
1156
+ "properties": {
1157
+ "yesNo": {
1158
+ "enum": [
1159
+ "No"
1160
+ ]
1161
+ }
1162
+ }
1163
+ },
1164
+ {
1165
+ "properties": {
1166
+ "yesNo": {
1167
+ "enum": [
1168
+ "Yes"
1169
+ ]
1170
+ }
1171
+ }
1172
+ }
1173
+ ]
1174
+ }
1175
+ }
1176
+ },
1177
+ "specialistIssues": {
1178
+ "properties": {
1179
+ "japaneseKnotweed": {
1180
+ "ta6Ref": "7.8",
1181
+ "title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
1182
+ "description": "If so ",
1183
+ "discriminator": {
1184
+ "propertyName": "yesNo"
1185
+ },
1186
+ "oneOf": [
1187
+ {
1188
+ "properties": {
1189
+ "yesNo": {
1190
+ "enum": [
1191
+ "No"
1192
+ ]
1193
+ }
1194
+ }
1195
+ },
1196
+ {
1197
+ "properties": {
1198
+ "yesNo": {
1199
+ "enum": [
1200
+ "Yes"
1201
+ ]
1202
+ }
1203
+ }
1204
+ }
1205
+ ]
1206
+ }
1207
+ }
1208
+ },
1209
+ "connectedUtilities": {
1210
+ "ta6Ref": "13",
1211
+ "title": "Connected utilities",
1212
+ "description": "Please indicate which utilities are are connected to the property.",
1213
+ "properties": {
1214
+ "mainsElectricity": {
1215
+ "ta6Ref": "13.1",
1216
+ "title": "Mains electricity",
1217
+ "discriminator": {
1218
+ "propertyName": "yesNo"
1219
+ },
1220
+ "oneOf": [
1221
+ {
1222
+ "properties": {
1223
+ "yesNo": {
1224
+ "enum": [
1225
+ "No"
1226
+ ]
1227
+ }
1228
+ }
1229
+ },
1230
+ {
1231
+ "properties": {
1232
+ "yesNo": {
1233
+ "enum": [
1234
+ "Yes"
1235
+ ]
1236
+ }
1237
+ }
1238
+ },
1239
+ {
1240
+ "properties": {
1241
+ "yesNo": {
1242
+ "enum": [
1243
+ "To be connected"
1244
+ ]
1245
+ }
1246
+ }
1247
+ }
1248
+ ]
1249
+ },
1250
+ "mainsGas": {
1251
+ "ta6Ref": "13.2",
1252
+ "title": "Mains gas",
1253
+ "discriminator": {
1254
+ "propertyName": "yesNo"
1255
+ },
1256
+ "oneOf": [
1257
+ {
1258
+ "properties": {
1259
+ "yesNo": {
1260
+ "enum": [
1261
+ "No"
1262
+ ]
1263
+ }
1264
+ }
1265
+ },
1266
+ {
1267
+ "properties": {
1268
+ "yesNo": {
1269
+ "enum": [
1270
+ "Yes"
1271
+ ]
1272
+ }
1273
+ }
1274
+ },
1275
+ {
1276
+ "properties": {
1277
+ "yesNo": {
1278
+ "enum": [
1279
+ "To be connected"
1280
+ ]
1281
+ }
1282
+ }
1283
+ }
1284
+ ]
1285
+ },
1286
+ "telephone": {
1287
+ "ta6Ref": "13.5",
1288
+ "title": "Telephone",
1289
+ "discriminator": {
1290
+ "propertyName": "yesNo"
1291
+ },
1292
+ "oneOf": [
1293
+ {
1294
+ "properties": {
1295
+ "yesNo": {
1296
+ "enum": [
1297
+ "No"
1298
+ ]
1299
+ }
1300
+ }
1301
+ },
1302
+ {
1303
+ "properties": {
1304
+ "yesNo": {
1305
+ "enum": [
1306
+ "Yes"
1307
+ ]
1308
+ }
1309
+ }
1310
+ },
1311
+ {
1312
+ "properties": {
1313
+ "yesNo": {
1314
+ "enum": [
1315
+ "To be connected"
1316
+ ]
1317
+ }
1318
+ }
1319
+ }
1320
+ ]
1321
+ },
1322
+ "cableSatelliteTV": {
1323
+ "ta6Ref": "13.6",
1324
+ "title": "Cable TV or satellite",
1325
+ "discriminator": {
1326
+ "propertyName": "yesNo"
1327
+ },
1328
+ "oneOf": [
1329
+ {
1330
+ "properties": {
1331
+ "yesNo": {
1332
+ "enum": [
1333
+ "No"
1334
+ ]
1335
+ }
1336
+ }
1337
+ },
1338
+ {
1339
+ "properties": {
1340
+ "yesNo": {
1341
+ "enum": [
1342
+ "Yes"
1343
+ ]
1344
+ }
1345
+ }
1346
+ },
1347
+ {
1348
+ "properties": {
1349
+ "yesNo": {
1350
+ "enum": [
1351
+ "To be connected"
1352
+ ]
1353
+ }
1354
+ }
1355
+ }
1356
+ ]
1357
+ },
1358
+ "solarPanels": {
1359
+ "ta6Ref": "4.6",
1360
+ "title": "Solar or photovoltaic panels",
1361
+ "discriminator": {
1362
+ "propertyName": "yesNo"
1363
+ },
1364
+ "oneOf": [
1365
+ {
1366
+ "properties": {
1367
+ "yesNo": {
1368
+ "enum": [
1369
+ "No"
1370
+ ]
1371
+ }
1372
+ }
1373
+ },
1374
+ {
1375
+ "properties": {
1376
+ "yesNo": {
1377
+ "enum": [
1378
+ "Yes"
1379
+ ]
1380
+ }
1381
+ }
1382
+ },
1383
+ {
1384
+ "properties": {
1385
+ "yesNo": {
1386
+ "enum": [
1387
+ "To be connected"
1388
+ ]
1389
+ }
1390
+ }
1391
+ }
1392
+ ]
1393
+ }
1394
+ }
1395
+ },
1396
+ "waterAndDrainage": {
1397
+ "ta6Ref": "13",
1398
+ "title": "Water and Drainage",
1399
+ "description": "Please describe the water and drainage services that are connected to the property.",
1400
+ "properties": {
1401
+ "mainsWater": {
1402
+ "ta6Ref": "13.3",
1403
+ "title": "Mains water",
1404
+ "discriminator": {
1405
+ "propertyName": "yesNo"
1406
+ },
1407
+ "oneOf": [
1408
+ {
1409
+ "properties": {
1410
+ "yesNo": {
1411
+ "enum": [
1412
+ "No"
1413
+ ]
1414
+ }
1415
+ }
1416
+ },
1417
+ {
1418
+ "properties": {
1419
+ "yesNo": {
1420
+ "enum": [
1421
+ "Yes"
1422
+ ]
1423
+ }
1424
+ }
1425
+ },
1426
+ {
1427
+ "properties": {
1428
+ "yesNo": {
1429
+ "enum": [
1430
+ "To be connected"
1431
+ ]
1432
+ }
1433
+ }
1434
+ }
1435
+ ]
1436
+ },
1437
+ "mainsSurfaceWaterDrainage": {
1438
+ "ta6Ref": "12.4b",
1439
+ "title": "Mains surface water drainage",
1440
+ "discriminator": {
1441
+ "propertyName": "yesNo"
1442
+ },
1443
+ "oneOf": [
1444
+ {
1445
+ "properties": {
1446
+ "yesNo": {
1447
+ "enum": [
1448
+ "No"
1449
+ ]
1450
+ }
1451
+ }
1452
+ },
1453
+ {
1454
+ "properties": {
1455
+ "yesNo": {
1456
+ "enum": [
1457
+ "Yes"
1458
+ ]
1459
+ }
1460
+ }
1461
+ },
1462
+ {
1463
+ "properties": {
1464
+ "yesNo": {
1465
+ "enum": [
1466
+ "To be connected"
1467
+ ]
1468
+ }
1469
+ }
1470
+ }
1471
+ ]
1472
+ },
1473
+ "mainsFoulDrainage": {
1474
+ "ta6Ref": "12.4a",
1475
+ "title": "Mains foul drainage",
1476
+ "discriminator": {
1477
+ "propertyName": "yesNo"
1478
+ },
1479
+ "oneOf": [
1480
+ {
1481
+ "properties": {
1482
+ "yesNo": {
1483
+ "enum": [
1484
+ "Yes"
1485
+ ]
1486
+ }
1487
+ }
1488
+ },
1489
+ {
1490
+ "properties": {
1491
+ "yesNo": {
1492
+ "enum": [
1493
+ "To be connected"
1494
+ ]
1495
+ }
1496
+ }
1497
+ },
1498
+ {
1499
+ "properties": {
1500
+ "yesNo": {
1501
+ "enum": [
1502
+ "No"
1503
+ ]
1504
+ },
1505
+ "septicTank": {
1506
+ "ta6Ref": "12.5a",
1507
+ "title": "Septic tank",
1508
+ "discriminator": {
1509
+ "propertyName": "yesNo"
1510
+ },
1511
+ "oneOf": [
1512
+ {
1513
+ "properties": {
1514
+ "yesNo": {
1515
+ "enum": [
1516
+ "No"
1517
+ ]
1518
+ }
1519
+ }
1520
+ },
1521
+ {
1522
+ "properties": {
1523
+ "yesNo": {
1524
+ "enum": [
1525
+ "Yes"
1526
+ ]
1527
+ },
1528
+ "dateReplaced": {
1529
+ "ta6Ref": "12.5.1",
1530
+ "title": "Date replaced or upgraded"
1531
+ },
1532
+ "dateLastEmptied": {
1533
+ "ta6Ref": "12.7",
1534
+ "title": "Date last emptied"
1535
+ }
1536
+ }
1537
+ }
1538
+ ]
1539
+ },
1540
+ "cesspit": {
1541
+ "ta6Ref": "12.5b",
1542
+ "title": "Cesspit",
1543
+ "discriminator": {
1544
+ "propertyName": "yesNo"
1545
+ },
1546
+ "oneOf": [
1547
+ {
1548
+ "properties": {
1549
+ "yesNo": {
1550
+ "enum": [
1551
+ "No"
1552
+ ]
1553
+ }
1554
+ }
1555
+ },
1556
+ {
1557
+ "properties": {
1558
+ "yesNo": {
1559
+ "enum": [
1560
+ "Yes"
1561
+ ]
1562
+ }
1563
+ }
1564
+ }
1565
+ ]
1566
+ },
1567
+ "sewerageTreatmentPlant": {
1568
+ "ta6Ref": "12.5a",
1569
+ "title": "Sewerage treatment plant",
1570
+ "discriminator": {
1571
+ "propertyName": "yesNo"
1572
+ },
1573
+ "oneOf": [
1574
+ {
1575
+ "properties": {
1576
+ "yesNo": {
1577
+ "enum": [
1578
+ "No"
1579
+ ]
1580
+ }
1581
+ }
1582
+ },
1583
+ {
1584
+ "properties": {
1585
+ "yesNo": {
1586
+ "enum": [
1587
+ "Yes"
1588
+ ]
1589
+ },
1590
+ "dateInstalled": {
1591
+ "ta6Ref": "12.9",
1592
+ "title": "Date installed"
1593
+ },
1594
+ "dateLastServiced": {
1595
+ "ta6Ref": "12.8",
1596
+ "title": "Date last serviced"
1597
+ }
1598
+ }
1599
+ }
1600
+ ]
1601
+ },
1602
+ "otherConnectedProperties": {
1603
+ "ta6Ref": "12.6",
1604
+ "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
1605
+ "discriminator": {
1606
+ "propertyName": "yesNo"
1607
+ },
1608
+ "oneOf": [
1609
+ {
1610
+ "properties": {
1611
+ "yesNo": {
1612
+ "enum": [
1613
+ "No"
1614
+ ]
1615
+ }
1616
+ }
1617
+ },
1618
+ {
1619
+ "properties": {
1620
+ "yesNo": {
1621
+ "enum": [
1622
+ "Yes"
1623
+ ]
1624
+ },
1625
+ "numberOfPropertiesSharing": {
1626
+ "ta6Ref": "A7.1.1.2",
1627
+ "title": "How many other properties?"
1628
+ }
1629
+ }
1630
+ }
1631
+ ]
1632
+ },
1633
+ "plantOnOtherLand": {
1634
+ "ta6Ref": "12.10",
1635
+ "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
1636
+ "discriminator": {
1637
+ "propertyName": "yesNo"
1638
+ },
1639
+ "oneOf": [
1640
+ {
1641
+ "properties": {
1642
+ "yesNo": {
1643
+ "enum": [
1644
+ "No"
1645
+ ]
1646
+ }
1647
+ }
1648
+ },
1649
+ {
1650
+ "properties": {
1651
+ "yesNo": {
1652
+ "enum": [
1653
+ "Yes"
1654
+ ]
1655
+ },
1656
+ "attachments": {
1657
+ "ta6Ref": "12.10.1",
1658
+ "title": "Please supply a plan showing the location of the system and how access is obtained.",
1659
+ "enum": [
1660
+ "Attached",
1661
+ "To follow"
1662
+ ]
1663
+ }
1664
+ }
1665
+ }
1666
+ ]
1667
+ }
1668
+ }
1669
+ }
1670
+ ]
1671
+ }
1672
+ }
1673
+ },
1674
+ "greenDealLoan": {
1675
+ "properties": {
1676
+ "hasGreenDealLoan": {
1677
+ "ta6Ref": "7.7",
1678
+ "title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
1679
+ "description": "If yes, 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",
1680
+ "discriminator": {
1681
+ "propertyName": "yesNo"
1682
+ },
1683
+ "oneOf": [
1684
+ {
1685
+ "properties": {
1686
+ "yesNo": {
1687
+ "enum": [
1688
+ "No"
1689
+ ]
1690
+ }
1691
+ }
1692
+ },
1693
+ {
1694
+ "properties": {
1695
+ "yesNo": {
1696
+ "enum": [
1697
+ "Yes"
1698
+ ]
1699
+ }
1700
+ }
1701
+ }
1702
+ ]
1703
+ }
1704
+ }
1705
+ },
1706
+ "centralHeating": {
1707
+ "properties": {
1708
+ "hasCentralHeating": {
1709
+ "ta6Ref": "12.3",
1710
+ "title": "Is there full/partial central heating in your property?",
1711
+ "enum": [
1712
+ "Yes",
1713
+ "No"
1714
+ ]
1715
+ }
1716
+ },
1717
+ "oneOf": [
1718
+ null,
1719
+ {
1720
+ "properties": {
1721
+ "centralHeatingDetails": {
1722
+ "properties": {
1723
+ "centralHeatingFuel": {
1724
+ "properties": {
1725
+ "centralHeatingFuelType": {
1726
+ "ta6Ref": "12.3a",
1727
+ "title": "What type of fuel does the system and boiler run on?",
1728
+ "enum": [
1729
+ "Gas",
1730
+ "Electricity",
1731
+ "Oil",
1732
+ "LPG",
1733
+ "Other"
1734
+ ]
1735
+ }
1736
+ },
1737
+ "oneOf": [
1738
+ null,
1739
+ {
1740
+ "properties": {
1741
+ "otherCentralHeatingFuelType": {
1742
+ "ta6Ref": "12.3a",
1743
+ "title": "Please describe the other fuel type"
1744
+ }
1745
+ }
1746
+ }
1747
+ ]
1748
+ },
1749
+ "centralHeatingInstalled": {
1750
+ "ta6Ref": "12.3b",
1751
+ "title": "When was the heating system and boiler installed?"
1752
+ },
1753
+ "boilerInstallationCertificate": {
1754
+ "ta6Ref": "12.3b",
1755
+ "title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
1756
+ "description": "If yes, ",
1757
+ "discriminator": {
1758
+ "propertyName": "yesNo"
1759
+ },
1760
+ "oneOf": [
1761
+ {
1762
+ "properties": {
1763
+ "yesNo": {
1764
+ "enum": [
1765
+ "No"
1766
+ ]
1767
+ }
1768
+ }
1769
+ },
1770
+ {
1771
+ "properties": {
1772
+ "yesNo": {
1773
+ "enum": [
1774
+ "Yes"
1775
+ ]
1776
+ }
1777
+ }
1778
+ }
1779
+ ]
1780
+ },
1781
+ "heatingLastServicedDate": {
1782
+ "ta6Ref": "12.3d",
1783
+ "title": "When was the heating system and boiler last serviced or maintained?"
1784
+ },
1785
+ "heatingInGoodWorkingOrder": {
1786
+ "ta6Ref": "12.3c",
1787
+ "title": "Is the heating system in good working order to your satisfaction?",
1788
+ "discriminator": {
1789
+ "propertyName": "yesNo"
1790
+ },
1791
+ "oneOf": [
1792
+ {
1793
+ "properties": {
1794
+ "yesNo": {
1795
+ "enum": [
1796
+ "Yes"
1797
+ ]
1798
+ }
1799
+ }
1800
+ },
1801
+ {
1802
+ "properties": {
1803
+ "yesNo": {
1804
+ "enum": [
1805
+ "No"
1806
+ ]
1807
+ }
1808
+ }
1809
+ }
1810
+ ]
1811
+ }
1812
+ }
1813
+ }
1814
+ }
1815
+ }
1816
+ ]
1817
+ },
1818
+ "insurance": {
1819
+ "ta6Ref": "6",
1820
+ "title": "Insurance",
1821
+ "discriminator": {
1822
+ "propertyName": "isInsured"
1823
+ },
1824
+ "oneOf": [
1825
+ {
1826
+ "properties": {
1827
+ "isInsured": {
1828
+ "enum": [
1829
+ "No"
1830
+ ]
1831
+ }
1832
+ }
1833
+ },
1834
+ {
1835
+ "properties": {
1836
+ "isInsured": {
1837
+ "enum": [
1838
+ "Yes"
1839
+ ]
1840
+ },
1841
+ "difficultiesObtainingInsurance": {
1842
+ "ta6Ref": "6.4",
1843
+ "title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
1844
+ "description": "(e.g. high premiums, excess over £1,500, special conditions etc)",
1845
+ "discriminator": {
1846
+ "propertyName": "yesNo"
1847
+ },
1848
+ "oneOf": [
1849
+ {
1850
+ "properties": {
1851
+ "yesNo": {
1852
+ "enum": [
1853
+ "No"
1854
+ ]
1855
+ }
1856
+ }
1857
+ },
1858
+ {
1859
+ "properties": {
1860
+ "yesNo": {
1861
+ "enum": [
1862
+ "Yes"
1863
+ ]
1864
+ }
1865
+ }
1866
+ }
1867
+ ]
1868
+ },
1869
+ "insuranceClaims": {
1870
+ "ta6Ref": "6.5",
1871
+ "title": "Have you ever made a claim against your building insurance in relation to the property?",
1872
+ "discriminator": {
1873
+ "propertyName": "yesNo"
1874
+ },
1875
+ "oneOf": [
1876
+ {
1877
+ "properties": {
1878
+ "yesNo": {
1879
+ "enum": [
1880
+ "No"
1881
+ ]
1882
+ }
1883
+ }
1884
+ },
1885
+ {
1886
+ "properties": {
1887
+ "yesNo": {
1888
+ "enum": [
1889
+ "Yes"
1890
+ ]
1891
+ }
1892
+ }
1893
+ }
1894
+ ]
1895
+ }
1896
+ }
1897
+ }
1898
+ ],
1899
+ "properties": {
1900
+ "isInsured": {
1901
+ "ta6Ref": "6.1",
1902
+ "title": "Do you insure the property?",
1903
+ "enum": [
1904
+ "Yes",
1905
+ "No"
1906
+ ]
1907
+ }
1908
+ }
1909
+ },
1910
+ "boundaries": {
1911
+ "ta6Ref": "1",
1912
+ "title": "Boundaries",
1913
+ "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."
1914
+ },
1915
+ "rightsAndInformalArrangements": {
1916
+ "ta6Ref": "8",
1917
+ "title": "Rights and Informal Arrangements",
1918
+ "properties": {
1919
+ "sharedContributions": {
1920
+ "ta6Ref": "8.1",
1921
+ "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?",
1922
+ "discriminator": {
1923
+ "propertyName": "yesNo"
1924
+ },
1925
+ "oneOf": [
1926
+ {
1927
+ "properties": {
1928
+ "yesNo": {
1929
+ "enum": [
1930
+ "No"
1931
+ ]
1932
+ }
1933
+ }
1934
+ },
1935
+ {
1936
+ "properties": {
1937
+ "yesNo": {
1938
+ "enum": [
1939
+ "Yes"
1940
+ ]
1941
+ }
1942
+ }
1943
+ }
1944
+ ]
1945
+ },
1946
+ "neighbouringLandRights": {
1947
+ "ta6Ref": "8.2",
1948
+ "title": "Do any rights and arrangements exist over neighbouring land from which the property benefits? (e.g. taking wheelie bins along an accessway through a neighbour’s back garden, parking, access to maintain the boundaries from the neighbour’s side etc)",
1949
+ "description": "If yes,",
1950
+ "discriminator": {
1951
+ "propertyName": "yesNo"
1952
+ },
1953
+ "oneOf": [
1954
+ {
1955
+ "properties": {
1956
+ "yesNo": {
1957
+ "enum": [
1958
+ "No"
1959
+ ]
1960
+ }
1961
+ }
1962
+ },
1963
+ {
1964
+ "properties": {
1965
+ "yesNo": {
1966
+ "enum": [
1967
+ "Yes"
1968
+ ]
1969
+ }
1970
+ }
1971
+ }
1972
+ ]
1973
+ },
1974
+ "accessRestrictionAttempts": {
1975
+ "ta6Ref": "8.3",
1976
+ "title": "Has anyone tried to stop you using an access way to the property or asked you to pay to use the access?",
1977
+ "discriminator": {
1978
+ "propertyName": "yesNo"
1979
+ },
1980
+ "oneOf": [
1981
+ {
1982
+ "properties": {
1983
+ "yesNo": {
1984
+ "enum": [
1985
+ "No"
1986
+ ]
1987
+ }
1988
+ }
1989
+ },
1990
+ {
1991
+ "properties": {
1992
+ "yesNo": {
1993
+ "enum": [
1994
+ "Yes"
1995
+ ]
1996
+ }
1997
+ }
1998
+ }
1999
+ ]
2000
+ },
2001
+ "rightsOrArrangements": {
2002
+ "ta6Ref": "8.4",
2003
+ "title": "Do you know if any of the following rights or arrangements affect the property?",
2004
+ "properties": {
2005
+ "publicRightOfWay": {
2006
+ "ta6Ref": "8.6",
2007
+ "title": "A public right of way through and/or across your property, buildings or land",
2008
+ "discriminator": {
2009
+ "propertyName": "yesNo"
2010
+ },
2011
+ "oneOf": [
2012
+ {
2013
+ "properties": {
2014
+ "yesNo": {
2015
+ "enum": [
2016
+ "No"
2017
+ ]
2018
+ }
2019
+ }
2020
+ },
2021
+ {
2022
+ "properties": {
2023
+ "yesNo": {
2024
+ "enum": [
2025
+ "Yes"
2026
+ ]
2027
+ }
2028
+ }
2029
+ }
2030
+ ]
2031
+ },
2032
+ "rightsOfLightOrSupport": {
2033
+ "ta6Ref": "8.4a",
2034
+ "title": "Rights of light or support for other properties",
2035
+ "discriminator": {
2036
+ "propertyName": "yesNo"
2037
+ },
2038
+ "oneOf": [
2039
+ {
2040
+ "properties": {
2041
+ "yesNo": {
2042
+ "enum": [
2043
+ "No"
2044
+ ]
2045
+ }
2046
+ }
2047
+ },
2048
+ {
2049
+ "properties": {
2050
+ "yesNo": {
2051
+ "enum": [
2052
+ "Yes"
2053
+ ]
2054
+ }
2055
+ }
2056
+ }
2057
+ ]
2058
+ },
2059
+ "rightsCreatedThroughCustom": {
2060
+ "ta6Ref": "8.4c",
2061
+ "title": "Rights created through custom or use (e.g. rights to graze on other land or forage, rights of the lord of the manor or others to take things from your property etc)",
2062
+ "discriminator": {
2063
+ "propertyName": "yesNo"
2064
+ },
2065
+ "oneOf": [
2066
+ {
2067
+ "properties": {
2068
+ "yesNo": {
2069
+ "enum": [
2070
+ "No"
2071
+ ]
2072
+ }
2073
+ }
2074
+ },
2075
+ {
2076
+ "properties": {
2077
+ "yesNo": {
2078
+ "enum": [
2079
+ "Yes"
2080
+ ]
2081
+ }
2082
+ }
2083
+ }
2084
+ ]
2085
+ },
2086
+ "minesAndMinerals": {
2087
+ "ta6Ref": "8.5a",
2088
+ "title": "Mines and minerals under the property",
2089
+ "discriminator": {
2090
+ "propertyName": "yesNo"
2091
+ },
2092
+ "oneOf": [
2093
+ {
2094
+ "properties": {
2095
+ "yesNo": {
2096
+ "enum": [
2097
+ "No"
2098
+ ]
2099
+ }
2100
+ }
2101
+ },
2102
+ {
2103
+ "properties": {
2104
+ "yesNo": {
2105
+ "enum": [
2106
+ "Yes"
2107
+ ]
2108
+ }
2109
+ }
2110
+ }
2111
+ ]
2112
+ },
2113
+ "churchChancel": {
2114
+ "ta6Ref": "8.5b",
2115
+ "title": "Liability to contribute to the maintenance of a church chancel?",
2116
+ "discriminator": {
2117
+ "propertyName": "yesNo"
2118
+ },
2119
+ "oneOf": [
2120
+ {
2121
+ "properties": {
2122
+ "yesNo": {
2123
+ "enum": [
2124
+ "No"
2125
+ ]
2126
+ }
2127
+ }
2128
+ },
2129
+ {
2130
+ "properties": {
2131
+ "yesNo": {
2132
+ "enum": [
2133
+ "Yes"
2134
+ ]
2135
+ }
2136
+ }
2137
+ }
2138
+ ]
2139
+ },
2140
+ "otherRights": {
2141
+ "ta6Ref": "8.6",
2142
+ "title": "Any other rights or arrangements affecting the property?",
2143
+ "discriminator": {
2144
+ "propertyName": "yesNo"
2145
+ },
2146
+ "oneOf": [
2147
+ {
2148
+ "properties": {
2149
+ "yesNo": {
2150
+ "enum": [
2151
+ "No"
2152
+ ]
2153
+ }
2154
+ }
2155
+ },
2156
+ {
2157
+ "properties": {
2158
+ "yesNo": {
2159
+ "enum": [
2160
+ "Yes"
2161
+ ]
2162
+ }
2163
+ }
2164
+ }
2165
+ ]
2166
+ }
2167
+ }
2168
+ }
2169
+ }
2170
+ },
2171
+ "environmentalIssues": {
2172
+ "properties": {
2173
+ "flooding": {
2174
+ "ta6Ref": "7.1",
2175
+ "title": "Flooding",
2176
+ "discriminator": {
2177
+ "propertyName": "hasBeenFlooded"
2178
+ },
2179
+ "oneOf": [
2180
+ {
2181
+ "properties": {
2182
+ "hasBeenFlooded": {
2183
+ "enum": [
2184
+ "No"
2185
+ ]
2186
+ }
2187
+ }
2188
+ },
2189
+ {
2190
+ "properties": {
2191
+ "hasBeenFlooded": {
2192
+ "enum": [
2193
+ "Yes"
2194
+ ]
2195
+ },
2196
+ "details": {
2197
+ "ta6Ref": "7.1",
2198
+ "title": "Please state when the flooding occurred and identify the parts that flooded"
2199
+ },
2200
+ "typeOfFlooding": {
2201
+ "ta6Ref": "7.2",
2202
+ "title": "What type of flooding occurred?",
2203
+ "properties": {
2204
+ "groundWater": {
2205
+ "ta6Ref": "7.2a",
2206
+ "title": "Ground water"
2207
+ },
2208
+ "sewer": {
2209
+ "ta6Ref": "7.2b",
2210
+ "title": "Sewer"
2211
+ },
2212
+ "surfaceWater": {
2213
+ "ta6Ref": "7.2c",
2214
+ "title": "Surface water"
2215
+ },
2216
+ "coastal": {
2217
+ "ta6Ref": "7.2d",
2218
+ "title": "Coastal flooding"
2219
+ },
2220
+ "river": {
2221
+ "ta6Ref": "7.2e",
2222
+ "title": "River flooding"
2223
+ }
2224
+ }
2225
+ }
2226
+ }
2227
+ }
2228
+ ],
2229
+ "properties": {
2230
+ "floodRiskReport": {
2231
+ "ta6Ref": "7.3",
2232
+ "title": "Has a Flood Risk Report been prepared?",
2233
+ "discriminator": {
2234
+ "propertyName": "yesNo"
2235
+ },
2236
+ "oneOf": [
2237
+ {
2238
+ "properties": {
2239
+ "yesNo": {
2240
+ "enum": [
2241
+ "No"
2242
+ ]
2243
+ }
2244
+ }
2245
+ },
2246
+ {
2247
+ "properties": {
2248
+ "yesNo": {
2249
+ "enum": [
2250
+ "Yes"
2251
+ ]
2252
+ }
2253
+ }
2254
+ }
2255
+ ]
2256
+ },
2257
+ "hasBeenFlooded": {
2258
+ "ta6Ref": "7.2",
2259
+ "title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
2260
+ "enum": [
2261
+ "Yes",
2262
+ "No"
2263
+ ]
2264
+ }
2265
+ }
2266
+ },
2267
+ "radon": {
2268
+ "ta6Ref": "7.4",
2269
+ "title": "Radon",
2270
+ "properties": {
2271
+ "radonTest": {
2272
+ "ta6Ref": "7.4",
2273
+ "title": "Has a Radon test been carried out on the property?",
2274
+ "discriminator": {
2275
+ "propertyName": "yesNo"
2276
+ },
2277
+ "oneOf": [
2278
+ {
2279
+ "properties": {
2280
+ "yesNo": {
2281
+ "enum": [
2282
+ "No"
2283
+ ]
2284
+ }
2285
+ }
2286
+ },
2287
+ {
2288
+ "properties": {
2289
+ "yesNo": {
2290
+ "enum": [
2291
+ "Yes"
2292
+ ]
2293
+ }
2294
+ }
2295
+ }
2296
+ ]
2297
+ },
2298
+ "remedialMeasuresOnConstruction": {
2299
+ "ta6Ref": "7.5",
2300
+ "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?"
2301
+ }
2302
+ }
2303
+ }
2304
+ }
2305
+ }
2306
+ }
2307
+ }
2308
+ }
2309
+ }
2310
+ }
2311
+ }