@pdtf/schemas 3.6.0-30 → 3.6.0-32

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 (38) hide show
  1. package/docs/sef25-extensions-ui-spec.md +274 -5
  2. package/index.js +9 -0
  3. package/package.json +1 -1
  4. package/src/schemas/v3/combined.json +419 -69
  5. package/src/schemas/v3/compactSkeleton.txt +24 -5
  6. package/src/schemas/v3/overlays/extensions/as.json +4 -2
  7. package/src/schemas/v3/overlays/extensions/dk.json +32 -0
  8. package/src/schemas/v3/overlays/extensions/dr.json +4 -2
  9. package/src/schemas/v3/overlays/extensions/er.json +4 -2
  10. package/src/schemas/v3/overlays/extensions/fd.json +6 -3
  11. package/src/schemas/v3/overlays/extensions/hi.json +6 -3
  12. package/src/schemas/v3/overlays/extensions/hs.json +4 -2
  13. package/src/schemas/v3/overlays/extensions/ic.json +56 -0
  14. package/src/schemas/v3/overlays/extensions/jk.json +4 -2
  15. package/src/schemas/v3/overlays/extensions/la.json +4 -2
  16. package/src/schemas/v3/overlays/extensions/lc.json +86 -0
  17. package/src/schemas/v3/overlays/extensions/ma.json +6 -3
  18. package/src/schemas/v3/overlays/extensions/mc.json +4 -2
  19. package/src/schemas/v3/overlays/extensions/mi.json +52 -0
  20. package/src/schemas/v3/overlays/extensions/nd.json +43 -0
  21. package/src/schemas/v3/overlays/extensions/oa.json +4 -2
  22. package/src/schemas/v3/overlays/extensions/oc.json +4 -2
  23. package/src/schemas/v3/overlays/extensions/pc.json +2 -1
  24. package/src/schemas/v3/overlays/extensions/rw.json +68 -0
  25. package/src/schemas/v3/overlays/extensions/sb.json +4 -2
  26. package/src/schemas/v3/overlays/extensions/sc.json +82 -14
  27. package/src/schemas/v3/overlays/extensions/sd.json +63 -0
  28. package/src/schemas/v3/overlays/extensions/sf.json +4 -2
  29. package/src/schemas/v3/overlays/extensions/sl.json +4 -2
  30. package/src/schemas/v3/overlays/extensions/tf.json +6 -3
  31. package/src/schemas/v3/overlays/extensions/tr.json +73 -0
  32. package/src/schemas/v3/overlays/extensions/wg.json +209 -0
  33. package/src/schemas/v3/overlays/ta6ed6.json +37 -18
  34. package/src/schemas/v3/pdtf-transaction.json +477 -51
  35. package/src/schemas/v3/skeleton.json +33 -10
  36. package/src/tests/v3/extensionOverlays.test.js +410 -4
  37. package/src/tests/v3/ta6ed6.test.js +1 -48
  38. package/src/utils/extractExtensionOverlays.js +121 -0
@@ -990,7 +990,64 @@
990
990
  "No"
991
991
  ]
992
992
  }
993
- }
993
+ },
994
+ "oneOf": [
995
+ {
996
+ "properties": {
997
+ "yesNo": {
998
+ "enum": [
999
+ "No"
1000
+ ]
1001
+ }
1002
+ }
1003
+ },
1004
+ {
1005
+ "properties": {
1006
+ "yesNo": {
1007
+ "enum": [
1008
+ "Yes"
1009
+ ]
1010
+ },
1011
+ "newBuildDetails": {
1012
+ "title": "New build details",
1013
+ "type": "object",
1014
+ "properties": {
1015
+ "snaggingCompletion": {
1016
+ "title": "Snagging completion status",
1017
+ "type": "string",
1018
+ "enum": [
1019
+ "complete",
1020
+ "outstanding",
1021
+ "not-done"
1022
+ ]
1023
+ },
1024
+ "adoptionStatus": {
1025
+ "title": "Roads and drains adoption status",
1026
+ "type": "string",
1027
+ "enum": [
1028
+ "adopted",
1029
+ "pending",
1030
+ "private"
1031
+ ]
1032
+ },
1033
+ "conversionConsent": {
1034
+ "title": "Consent for conversion obtained",
1035
+ "type": "boolean"
1036
+ },
1037
+ "conversionQuality": {
1038
+ "title": "Conversion quality assessment",
1039
+ "type": "string",
1040
+ "enum": [
1041
+ "professional",
1042
+ "diy",
1043
+ "unknown"
1044
+ ]
1045
+ }
1046
+ }
1047
+ }
1048
+ }
1049
+ }
1050
+ ]
994
1051
  },
995
1052
  "isHMO": {
996
1053
  "title": "Is the property a House in Multiple Occupation (HMO)?",
@@ -1548,6 +1605,7 @@
1548
1605
  }
1549
1606
  },
1550
1607
  "ownership": {
1608
+ "sef25Ref": "T1",
1551
1609
  "title": "Ownership",
1552
1610
  "type": "object",
1553
1611
  "properties": {
@@ -1677,6 +1735,54 @@
1677
1735
  }
1678
1736
  ]
1679
1737
  },
1738
+ "titleRestrictions": {
1739
+ "sef25Ref": "T1.1",
1740
+ "title": "Are there any known restrictions on the title?",
1741
+ "type": "object",
1742
+ "sef25Required": [
1743
+ "yesNo"
1744
+ ],
1745
+ "properties": {
1746
+ "yesNo": {
1747
+ "sef25Ref": "T1.1.1",
1748
+ "type": "string",
1749
+ "title": "",
1750
+ "enum": [
1751
+ "Yes",
1752
+ "No"
1753
+ ]
1754
+ }
1755
+ },
1756
+ "oneOf": [
1757
+ {
1758
+ "properties": {
1759
+ "yesNo": {
1760
+ "enum": [
1761
+ "No"
1762
+ ]
1763
+ }
1764
+ }
1765
+ },
1766
+ {
1767
+ "properties": {
1768
+ "yesNo": {
1769
+ "enum": [
1770
+ "Yes"
1771
+ ]
1772
+ },
1773
+ "details": {
1774
+ "sef25Ref": "T1.1.2",
1775
+ "title": "Details",
1776
+ "type": "string",
1777
+ "minLength": 1
1778
+ }
1779
+ },
1780
+ "sef25Required": [
1781
+ "details"
1782
+ ]
1783
+ }
1784
+ ]
1785
+ },
1680
1786
  "wholeFreeholdForSale": {
1681
1787
  "title": "Is the entire freehold being sold?",
1682
1788
  "type": "object",
@@ -1716,7 +1822,10 @@
1716
1822
  }
1717
1823
  ]
1718
1824
  }
1719
- }
1825
+ },
1826
+ "sef25Required": [
1827
+ "titleRestrictions"
1828
+ ]
1720
1829
  },
1721
1830
  {
1722
1831
  "properties": {
@@ -8303,8 +8412,12 @@
8303
8412
  }
8304
8413
  },
8305
8414
  "parking": {
8415
+ "sef25Ref": "K1",
8306
8416
  "title": "Parking",
8307
8417
  "type": "object",
8418
+ "sef25Required": [
8419
+ "droppedKerbAccess"
8420
+ ],
8308
8421
  "properties": {
8309
8422
  "parkingArrangements": {
8310
8423
  "type": "array",
@@ -8436,6 +8549,25 @@
8436
8549
  }
8437
8550
  ]
8438
8551
  },
8552
+ "droppedKerbAccess": {
8553
+ "sef25Ref": "K1.1",
8554
+ "title": "Is there a dropped kerb access to parking?",
8555
+ "type": "object",
8556
+ "sef25Required": [
8557
+ "yesNo"
8558
+ ],
8559
+ "properties": {
8560
+ "yesNo": {
8561
+ "sef25Ref": "K1.1.1",
8562
+ "type": "string",
8563
+ "title": "",
8564
+ "enum": [
8565
+ "Yes",
8566
+ "No"
8567
+ ]
8568
+ }
8569
+ }
8570
+ },
8439
8571
  "electricVehicleChargingPoint": {
8440
8572
  "title": "Is there an electric vehicle charging point belonging to the property?",
8441
8573
  "type": "object",
@@ -12102,11 +12234,13 @@
12102
12234
  }
12103
12235
  },
12104
12236
  "notices": {
12237
+ "sef25Ref": "N1",
12105
12238
  "title": "Notices which Affect the Property",
12106
12239
  "description": "Are you aware of, or have you received, any of the following notices?",
12107
12240
  "type": "object",
12108
12241
  "properties": {
12109
12242
  "neighbourDevelopment": {
12243
+ "sef25Ref": "N1.1",
12110
12244
  "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
12111
12245
  "type": "object",
12112
12246
  "properties": {
@@ -17884,6 +18018,7 @@
17884
18018
  }
17885
18019
  },
17886
18020
  "electricity": {
18021
+ "sef25Ref": "S1",
17887
18022
  "title": "Electricity supply",
17888
18023
  "type": "object",
17889
18024
  "properties": {
@@ -17969,6 +18104,7 @@
17969
18104
  ]
17970
18105
  },
17971
18106
  "solarPanels": {
18107
+ "sef25Ref": "S1",
17972
18108
  "title": "Solar or photovoltaic panels",
17973
18109
  "type": "object",
17974
18110
  "properties": {
@@ -18016,6 +18152,7 @@
18016
18152
  "type": "integer"
18017
18153
  },
18018
18154
  "panelsOwnedOutright": {
18155
+ "sef25Ref": "S1.1",
18019
18156
  "title": "Do you own the panels, and all equipment related to them, outright?",
18020
18157
  "type": "object",
18021
18158
  "properties": {
@@ -18057,6 +18194,63 @@
18057
18194
  "Attached",
18058
18195
  "To follow"
18059
18196
  ]
18197
+ },
18198
+ "associatedCost": {
18199
+ "sef25Ref": "S1.1",
18200
+ "title": "Associated costs of leased solar panels",
18201
+ "type": "object",
18202
+ "sef25Required": [
18203
+ "hasCost"
18204
+ ],
18205
+ "properties": {
18206
+ "hasCost": {
18207
+ "sef25Ref": "S1.1.1",
18208
+ "title": "Are there any associated costs?",
18209
+ "type": "string",
18210
+ "enum": [
18211
+ "Yes",
18212
+ "No"
18213
+ ]
18214
+ }
18215
+ },
18216
+ "oneOf": [
18217
+ {
18218
+ "properties": {
18219
+ "hasCost": {
18220
+ "enum": [
18221
+ "No"
18222
+ ]
18223
+ }
18224
+ }
18225
+ },
18226
+ {
18227
+ "properties": {
18228
+ "hasCost": {
18229
+ "enum": [
18230
+ "Yes"
18231
+ ]
18232
+ },
18233
+ "amount": {
18234
+ "sef25Ref": "S1.1.2",
18235
+ "title": "Amount (£)",
18236
+ "type": "number"
18237
+ },
18238
+ "frequency": {
18239
+ "sef25Ref": "S1.1.3",
18240
+ "title": "Payment frequency",
18241
+ "type": "string",
18242
+ "enum": [
18243
+ "Per month",
18244
+ "Per year"
18245
+ ]
18246
+ }
18247
+ },
18248
+ "sef25Required": [
18249
+ "amount",
18250
+ "frequency"
18251
+ ]
18252
+ }
18253
+ ]
18060
18254
  }
18061
18255
  }
18062
18256
  }
@@ -18605,29 +18799,60 @@
18605
18799
  },
18606
18800
  "associatedCost": {
18607
18801
  "sef25Ref": "U1.1",
18608
- "title": "Please provide the associated costs for water supply",
18802
+ "title": "Associated costs for water supply",
18609
18803
  "type": "object",
18610
18804
  "sef25Required": [
18611
- "amount",
18612
- "frequency"
18805
+ "hasCost"
18613
18806
  ],
18614
18807
  "properties": {
18615
- "amount": {
18808
+ "hasCost": {
18616
18809
  "sef25Ref": "U1.1.1",
18617
- "title": "Associated costs of supply if any (£)",
18618
- "type": "number"
18619
- },
18620
- "frequency": {
18621
- "sef25Ref": "U1.1.2",
18622
- "title": "Payment frequency if costs are associated",
18810
+ "title": "Are there any associated costs?",
18623
18811
  "type": "string",
18624
18812
  "enum": [
18625
- "Per month",
18626
- "Per year",
18627
- "Not applicable"
18813
+ "Yes",
18814
+ "No"
18628
18815
  ]
18629
18816
  }
18630
- }
18817
+ },
18818
+ "oneOf": [
18819
+ {
18820
+ "properties": {
18821
+ "hasCost": {
18822
+ "enum": [
18823
+ "No"
18824
+ ]
18825
+ }
18826
+ }
18827
+ },
18828
+ {
18829
+ "properties": {
18830
+ "hasCost": {
18831
+ "enum": [
18832
+ "Yes"
18833
+ ]
18834
+ },
18835
+ "amount": {
18836
+ "sef25Ref": "U1.1.2",
18837
+ "title": "Amount (£)",
18838
+ "type": "number"
18839
+ },
18840
+ "frequency": {
18841
+ "sef25Ref": "U1.1.3",
18842
+ "title": "Payment frequency",
18843
+ "type": "string",
18844
+ "enum": [
18845
+ "Per month",
18846
+ "Per year"
18847
+ ]
18848
+ }
18849
+ },
18850
+ "sef25Required": [
18851
+ "amount",
18852
+ "frequency"
18853
+ ]
18854
+ }
18855
+ ]
18631
18856
  }
18632
18857
  },
18633
18858
  "sef25Required": [
@@ -19201,8 +19426,27 @@
19201
19426
  "Septic tank"
19202
19427
  ]
19203
19428
  },
19429
+ "dateDischargeCommenced": {
19430
+ "title": "When did the discharge commence?",
19431
+ "type": "string",
19432
+ "oneOf": [
19433
+ {
19434
+ "format": "date"
19435
+ },
19436
+ {
19437
+ "enum": [
19438
+ "Not known"
19439
+ ]
19440
+ }
19441
+ ]
19442
+ },
19443
+ "dateInstalled": {
19444
+ "title": "When was the system installed?",
19445
+ "type": "string",
19446
+ "format": "date"
19447
+ },
19204
19448
  "dateReplaced": {
19205
- "title": "Date replaced or upgraded",
19449
+ "title": "When was the system last replaced or upgraded?",
19206
19450
  "type": "string",
19207
19451
  "format": "date"
19208
19452
  },
@@ -19220,6 +19464,30 @@
19220
19464
  "Cesspit"
19221
19465
  ]
19222
19466
  },
19467
+ "dateDischargeCommenced": {
19468
+ "title": "When did the discharge commence?",
19469
+ "type": "string",
19470
+ "oneOf": [
19471
+ {
19472
+ "format": "date"
19473
+ },
19474
+ {
19475
+ "enum": [
19476
+ "Not known"
19477
+ ]
19478
+ }
19479
+ ]
19480
+ },
19481
+ "dateInstalled": {
19482
+ "title": "Date installed",
19483
+ "type": "string",
19484
+ "format": "date"
19485
+ },
19486
+ "dateReplaced": {
19487
+ "title": "When was the system last replaced or upgraded?",
19488
+ "type": "string",
19489
+ "format": "date"
19490
+ },
19223
19491
  "dateLastEmptied": {
19224
19492
  "title": "Date last emptied",
19225
19493
  "type": "string",
@@ -19234,6 +19502,20 @@
19234
19502
  "Sewerage treatment plant"
19235
19503
  ]
19236
19504
  },
19505
+ "dateDischargeCommenced": {
19506
+ "title": "When did the discharge commence?",
19507
+ "type": "string",
19508
+ "oneOf": [
19509
+ {
19510
+ "format": "date"
19511
+ },
19512
+ {
19513
+ "enum": [
19514
+ "Not known"
19515
+ ]
19516
+ }
19517
+ ]
19518
+ },
19237
19519
  "supplier": {
19238
19520
  "title": "Provider name",
19239
19521
  "type": "string"
@@ -19247,12 +19529,17 @@
19247
19529
  "type": "string"
19248
19530
  },
19249
19531
  "dateInstalled": {
19250
- "title": "Date installed",
19532
+ "title": "When was the system installed",
19533
+ "type": "string",
19534
+ "format": "date"
19535
+ },
19536
+ "dateReplaced": {
19537
+ "title": "When was the system last replaced or upgraded?",
19251
19538
  "type": "string",
19252
19539
  "format": "date"
19253
19540
  },
19254
19541
  "dateLastServiced": {
19255
- "title": "Date last serviced",
19542
+ "title": "When was the treatment plant last serviced",
19256
19543
  "type": "string",
19257
19544
  "format": "date"
19258
19545
  },
@@ -19288,26 +19575,57 @@
19288
19575
  "title": "Associated costs for sewerage",
19289
19576
  "type": "object",
19290
19577
  "sef25Required": [
19291
- "amount",
19292
- "frequency"
19578
+ "hasCost"
19293
19579
  ],
19294
19580
  "properties": {
19295
- "amount": {
19581
+ "hasCost": {
19296
19582
  "sef25Ref": "U1.2.1",
19297
- "title": "Associated costs for sewerage if any (£)",
19298
- "type": "number"
19299
- },
19300
- "frequency": {
19301
- "sef25Ref": "U1.2.2",
19302
- "title": "Payment frequency if costs are associated",
19583
+ "title": "Are there any associated costs?",
19303
19584
  "type": "string",
19304
19585
  "enum": [
19305
- "Per month",
19306
- "Per year",
19307
- "Not applicable"
19586
+ "Yes",
19587
+ "No"
19308
19588
  ]
19309
19589
  }
19310
- }
19590
+ },
19591
+ "oneOf": [
19592
+ {
19593
+ "properties": {
19594
+ "hasCost": {
19595
+ "enum": [
19596
+ "No"
19597
+ ]
19598
+ }
19599
+ }
19600
+ },
19601
+ {
19602
+ "properties": {
19603
+ "hasCost": {
19604
+ "enum": [
19605
+ "Yes"
19606
+ ]
19607
+ },
19608
+ "amount": {
19609
+ "sef25Ref": "U1.2.2",
19610
+ "title": "Amount (£)",
19611
+ "type": "number"
19612
+ },
19613
+ "frequency": {
19614
+ "sef25Ref": "U1.2.3",
19615
+ "title": "Payment frequency",
19616
+ "type": "string",
19617
+ "enum": [
19618
+ "Per month",
19619
+ "Per year"
19620
+ ]
19621
+ }
19622
+ },
19623
+ "sef25Required": [
19624
+ "amount",
19625
+ "frequency"
19626
+ ]
19627
+ }
19628
+ ]
19311
19629
  }
19312
19630
  },
19313
19631
  "sef25Required": [
@@ -20443,6 +20761,7 @@
20443
20761
  }
20444
20762
  },
20445
20763
  "insurance": {
20764
+ "sef25Ref": "I1",
20446
20765
  "title": "Insurance",
20447
20766
  "type": "object",
20448
20767
  "properties": {
@@ -20654,11 +20973,13 @@
20654
20973
  ]
20655
20974
  },
20656
20975
  "insuranceClaims": {
20976
+ "sef25Ref": "I1.1",
20657
20977
  "title": "Have you ever made a claim against your building insurance in relation to the property?",
20658
20978
  "Title": "Has the seller made any buildings insurance claims?",
20659
20979
  "type": "object",
20660
20980
  "properties": {
20661
20981
  "yesNo": {
20982
+ "sef25Ref": "I1.1.1",
20662
20983
  "type": "string",
20663
20984
  "title": "",
20664
20985
  "enum": [
@@ -20693,11 +21014,15 @@
20693
21014
  }
20694
21015
  ]
20695
21016
  }
20696
- }
21017
+ },
21018
+ "sef25Required": [
21019
+ "insuranceClaims"
21020
+ ]
20697
21021
  }
20698
21022
  ]
20699
21023
  },
20700
21024
  "rightsAndInformalArrangements": {
21025
+ "sef25Ref": "R1",
20701
21026
  "title": "Rights and Informal Arrangements",
20702
21027
  "type": "object",
20703
21028
  "properties": {
@@ -20908,8 +21233,12 @@
20908
21233
  ]
20909
21234
  },
20910
21235
  "rightsOrArrangements": {
21236
+ "sef25Ref": "R1",
20911
21237
  "title": "Do you know if any of the following rights or arrangements affect the property?",
20912
21238
  "type": "object",
21239
+ "sef25Required": [
21240
+ "privateRightOfWay"
21241
+ ],
20913
21242
  "properties": {
20914
21243
  "publicRightOfWay": {
20915
21244
  "title": "A public right of way through and/or across your property, buildings or land",
@@ -20958,6 +21287,54 @@
20958
21287
  }
20959
21288
  ]
20960
21289
  },
21290
+ "privateRightOfWay": {
21291
+ "sef25Ref": "R1.1",
21292
+ "title": "A private right of way through and/or across your house, buildings or land",
21293
+ "type": "object",
21294
+ "sef25Required": [
21295
+ "yesNo"
21296
+ ],
21297
+ "properties": {
21298
+ "yesNo": {
21299
+ "sef25Ref": "R1.1.1",
21300
+ "type": "string",
21301
+ "title": "",
21302
+ "enum": [
21303
+ "Yes",
21304
+ "No"
21305
+ ]
21306
+ }
21307
+ },
21308
+ "oneOf": [
21309
+ {
21310
+ "properties": {
21311
+ "yesNo": {
21312
+ "enum": [
21313
+ "No"
21314
+ ]
21315
+ }
21316
+ }
21317
+ },
21318
+ {
21319
+ "properties": {
21320
+ "yesNo": {
21321
+ "enum": [
21322
+ "Yes"
21323
+ ]
21324
+ },
21325
+ "details": {
21326
+ "sef25Ref": "R1.1.2",
21327
+ "title": "Please provide details",
21328
+ "type": "string",
21329
+ "minLength": 1
21330
+ }
21331
+ },
21332
+ "sef25Required": [
21333
+ "details"
21334
+ ]
21335
+ }
21336
+ ]
21337
+ },
20961
21338
  "rightsOfLight": {
20962
21339
  "title": "Rights of light",
20963
21340
  "type": "object",
@@ -21355,8 +21732,12 @@
21355
21732
  }
21356
21733
  },
21357
21734
  "environmentalIssues": {
21735
+ "sef25Ref": "E1",
21358
21736
  "title": "Environmental Issues Affecting the Property",
21359
21737
  "type": "object",
21738
+ "sef25Required": [
21739
+ "stormFireFloodDamage"
21740
+ ],
21360
21741
  "properties": {
21361
21742
  "flooding": {
21362
21743
  "title": "Flooding",
@@ -21516,6 +21897,7 @@
21516
21897
  "type": "object",
21517
21898
  "properties": {
21518
21899
  "hasBeenFlooded": {
21900
+ "sef25Ref": "E1.2",
21519
21901
  "title": "Has the property been flooded in the last 5 years?",
21520
21902
  "type": "string",
21521
21903
  "enum": [
@@ -21606,6 +21988,54 @@
21606
21988
  }
21607
21989
  }
21608
21990
  },
21991
+ "stormFireFloodDamage": {
21992
+ "sef25Ref": "E1.1",
21993
+ "title": "Has the property ever suffered storm, fire or flood damage?",
21994
+ "type": "object",
21995
+ "sef25Required": [
21996
+ "yesNo"
21997
+ ],
21998
+ "properties": {
21999
+ "yesNo": {
22000
+ "sef25Ref": "E1.1.1",
22001
+ "type": "string",
22002
+ "title": "",
22003
+ "enum": [
22004
+ "Yes",
22005
+ "No"
22006
+ ]
22007
+ }
22008
+ },
22009
+ "oneOf": [
22010
+ {
22011
+ "properties": {
22012
+ "yesNo": {
22013
+ "enum": [
22014
+ "No"
22015
+ ]
22016
+ }
22017
+ }
22018
+ },
22019
+ {
22020
+ "properties": {
22021
+ "yesNo": {
22022
+ "enum": [
22023
+ "Yes"
22024
+ ]
22025
+ },
22026
+ "details": {
22027
+ "sef25Ref": "E1.1.2",
22028
+ "title": "Please provide details",
22029
+ "type": "string",
22030
+ "minLength": 1
22031
+ }
22032
+ },
22033
+ "sef25Required": [
22034
+ "details"
22035
+ ]
22036
+ }
22037
+ ]
22038
+ },
21609
22039
  "radon": {
21610
22040
  "title": "Radon",
21611
22041
  "type": "object",
@@ -22977,8 +23407,12 @@
22977
23407
  }
22978
23408
  },
22979
23409
  "additionalInformation": {
23410
+ "sef25Ref": "M1",
22980
23411
  "title": "Additional Information",
22981
23412
  "type": "object",
23413
+ "sef25Required": [
23414
+ "otherMaterialIssue"
23415
+ ],
22982
23416
  "properties": {
22983
23417
  "consents": {
22984
23418
  "title": "Please supply copies of all consents that have been given under any covenants, estate management schemes or other restrictions affecting the title to the property for all actions you have disclosed in your answers to questions 5 (Alterations), 8.5 (Green Deal), 10.3 (EV charging points) and 11 (Services).",
@@ -23074,11 +23508,13 @@
23074
23508
  ]
23075
23509
  },
23076
23510
  "otherMaterialIssue": {
23511
+ "sef25Ref": "M1.1",
23077
23512
  "title": "Are you aware of any other material issue or information which relates to the property or has anything occurred which may affect the average person's decision to proceed?",
23078
23513
  "description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
23079
23514
  "type": "object",
23080
23515
  "properties": {
23081
23516
  "yesNo": {
23517
+ "sef25Ref": "M1.1.1",
23082
23518
  "type": "string",
23083
23519
  "title": "",
23084
23520
  "enum": [
@@ -24088,6 +24524,7 @@
24088
24524
  ]
24089
24525
  },
24090
24526
  "guaranteesWarrantiesAndIndemnityInsurances": {
24527
+ "sef25Ref": "W1",
24091
24528
  "title": "Guarantees, Warranties and Indemnity Insurances",
24092
24529
  "type": "object",
24093
24530
  "properties": {
@@ -24118,6 +24555,7 @@
24118
24555
  ]
24119
24556
  },
24120
24557
  "newHomeWarranty": {
24558
+ "sef25Ref": "W1.1",
24121
24559
  "title": "New Home Warranty (NHBC or similar)",
24122
24560
  "type": "object",
24123
24561
  "properties": {
@@ -24165,6 +24603,7 @@
24165
24603
  ]
24166
24604
  },
24167
24605
  "roofingWork": {
24606
+ "sef25Ref": "W1.2",
24168
24607
  "title": "Roofing work",
24169
24608
  "type": "object",
24170
24609
  "properties": {
@@ -24207,6 +24646,7 @@
24207
24646
  ]
24208
24647
  },
24209
24648
  "dampProofingTreatment": {
24649
+ "sef25Ref": "W1.3",
24210
24650
  "title": "Damp proofing treatment",
24211
24651
  "type": "object",
24212
24652
  "properties": {
@@ -24291,6 +24731,7 @@
24291
24731
  ]
24292
24732
  },
24293
24733
  "centralHeatingAndorPlumbing": {
24734
+ "sef25Ref": "W1.4",
24294
24735
  "title": "Central heating and/or plumbing",
24295
24736
  "type": "object",
24296
24737
  "properties": {
@@ -24408,6 +24849,7 @@
24408
24849
  ]
24409
24850
  },
24410
24851
  "electricalRepairOrInstallation": {
24852
+ "sef25Ref": "W1.5",
24411
24853
  "title": "Electrical repair or installation",
24412
24854
  "type": "object",
24413
24855
  "properties": {
@@ -24450,6 +24892,7 @@
24450
24892
  ]
24451
24893
  },
24452
24894
  "subsidenceWork": {
24895
+ "sef25Ref": "W1.6",
24453
24896
  "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
24454
24897
  "type": "object",
24455
24898
  "properties": {
@@ -24576,6 +25019,7 @@
24576
25019
  ]
24577
25020
  },
24578
25021
  "otherGuarantees": {
25022
+ "sef25Ref": "W1.7",
24579
25023
  "title": "Other Guarantees or warranties",
24580
25024
  "type": "object",
24581
25025
  "properties": {
@@ -25152,24 +25596,6 @@
25152
25596
  "confirmInformationIsAccurate": {
25153
25597
  "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",
25154
25598
  "type": "boolean"
25155
- },
25156
- "sellerSignatures": {
25157
- "title": "Seller signatures",
25158
- "type": "array",
25159
- "items": {
25160
- "type": "object",
25161
- "properties": {
25162
- "name": {
25163
- "title": "Name",
25164
- "type": "string"
25165
- },
25166
- "signedOn": {
25167
- "title": "Date signed",
25168
- "type": "string",
25169
- "format": "date"
25170
- }
25171
- }
25172
- }
25173
25599
  }
25174
25600
  }
25175
25601
  },