@pdtf/schemas 3.6.0-36 → 3.6.0-38

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 (39) hide show
  1. package/README.md +52 -33
  2. package/docs/sef25-extensions-ui-spec.md +258 -49
  3. package/index.js +9 -0
  4. package/package.json +1 -1
  5. package/src/schemas/v3/combined.json +271 -27
  6. package/src/schemas/v3/compactSkeleton.txt +16 -2
  7. package/src/schemas/v3/overlays/extensions/as.json +4 -2
  8. package/src/schemas/v3/overlays/extensions/dk.json +32 -0
  9. package/src/schemas/v3/overlays/extensions/dr.json +4 -2
  10. package/src/schemas/v3/overlays/extensions/er.json +4 -2
  11. package/src/schemas/v3/overlays/extensions/fd.json +6 -3
  12. package/src/schemas/v3/overlays/extensions/hi.json +6 -3
  13. package/src/schemas/v3/overlays/extensions/hs.json +4 -2
  14. package/src/schemas/v3/overlays/extensions/ic.json +59 -0
  15. package/src/schemas/v3/overlays/extensions/jk.json +4 -2
  16. package/src/schemas/v3/overlays/extensions/la.json +4 -2
  17. package/src/schemas/v3/overlays/extensions/lc.json +64 -0
  18. package/src/schemas/v3/overlays/extensions/ma.json +6 -3
  19. package/src/schemas/v3/overlays/extensions/mc.json +4 -2
  20. package/src/schemas/v3/overlays/extensions/mi.json +55 -0
  21. package/src/schemas/v3/overlays/extensions/nd.json +43 -0
  22. package/src/schemas/v3/overlays/extensions/oa.json +4 -2
  23. package/src/schemas/v3/overlays/extensions/oc.json +4 -2
  24. package/src/schemas/v3/overlays/extensions/pc.json +2 -1
  25. package/src/schemas/v3/overlays/extensions/ph.json +11 -14
  26. package/src/schemas/v3/overlays/extensions/rw.json +68 -0
  27. package/src/schemas/v3/overlays/extensions/sb.json +4 -2
  28. package/src/schemas/v3/overlays/extensions/sc.json +34 -10
  29. package/src/schemas/v3/overlays/extensions/sd.json +63 -0
  30. package/src/schemas/v3/overlays/extensions/sf.json +4 -2
  31. package/src/schemas/v3/overlays/extensions/sl.json +4 -2
  32. package/src/schemas/v3/overlays/extensions/tf.json +6 -3
  33. package/src/schemas/v3/overlays/extensions/tr.json +73 -0
  34. package/src/schemas/v3/overlays/extensions/wg.json +250 -0
  35. package/src/schemas/v3/overlays/sef25.json +717 -10
  36. package/src/schemas/v3/pdtf-transaction.json +232 -10
  37. package/src/schemas/v3/skeleton.json +24 -5
  38. package/src/tests/v3/extensionOverlays.test.js +411 -3
  39. package/src/utils/extractExtensionOverlays.js +116 -4
@@ -1938,6 +1938,7 @@
1938
1938
  "ta7ed5Ref": "2",
1939
1939
  "ntsRef": "A3",
1940
1940
  "nts2Ref": "A3",
1941
+ "sef25Ref": "T1",
1941
1942
  "title": "Ownership",
1942
1943
  "type": "object",
1943
1944
  "baspi4Required": ["ownershipsToBeTransferred"],
@@ -2096,6 +2097,46 @@
2096
2097
  }
2097
2098
  ]
2098
2099
  },
2100
+ "titleRestrictions": {
2101
+ "sef25Ref": "T1.1",
2102
+ "title": "Are there any known restrictions on the title?",
2103
+ "type": "object",
2104
+ "sef25Required": ["yesNo"],
2105
+ "properties": {
2106
+ "yesNo": {
2107
+ "sef25Ref": "T1.1.1",
2108
+ "type": "string",
2109
+ "title": "",
2110
+ "enum": ["Yes", "No"]
2111
+ }
2112
+ },
2113
+ "discriminator": {
2114
+ "propertyName": "yesNo"
2115
+ },
2116
+ "oneOf": [
2117
+ {
2118
+ "properties": {
2119
+ "yesNo": {
2120
+ "enum": ["No"]
2121
+ }
2122
+ }
2123
+ },
2124
+ {
2125
+ "properties": {
2126
+ "yesNo": {
2127
+ "enum": ["Yes"]
2128
+ },
2129
+ "details": {
2130
+ "sef25Ref": "T1.1.2",
2131
+ "title": "Details",
2132
+ "type": "string",
2133
+ "minLength": 1
2134
+ }
2135
+ },
2136
+ "sef25Required": ["details"]
2137
+ }
2138
+ ]
2139
+ },
2099
2140
  "wholeFreeholdForSale": {
2100
2141
  "baspi4Ref": "A1.3.0.2.1",
2101
2142
  "baspi5Ref": "A1.3.0.2.1",
@@ -2144,7 +2185,8 @@
2144
2185
  },
2145
2186
  "baspi4Required": ["wholeFreeholdForSale"],
2146
2187
  "baspi5Required": ["wholeFreeholdForSale"],
2147
- "nts2Required": ["estateRentcharges"]
2188
+ "nts2Required": ["estateRentcharges"],
2189
+ "sef25Required": ["titleRestrictions"]
2148
2190
  },
2149
2191
  {
2150
2192
  "properties": {
@@ -10206,6 +10248,7 @@
10206
10248
  "rdsRef": "Services/Parking",
10207
10249
  "ta6Ref": "9",
10208
10250
  "ta6ed6Ref": "10",
10251
+ "sef25Ref": "K1",
10209
10252
  "title": "Parking",
10210
10253
  "type": "object",
10211
10254
  "baspi4Required": [
@@ -10248,6 +10291,7 @@
10248
10291
  "controlledParking",
10249
10292
  "electricVehicleChargingPoint"
10250
10293
  ],
10294
+ "sef25Required": ["droppedKerbAccess"],
10251
10295
  "properties": {
10252
10296
  "parkingArrangements": {
10253
10297
  "ntsRef": "B4.1",
@@ -10418,6 +10462,20 @@
10418
10462
  }
10419
10463
  ]
10420
10464
  },
10465
+ "droppedKerbAccess": {
10466
+ "sef25Ref": "K1.1",
10467
+ "title": "Is there a dropped kerb access to parking?",
10468
+ "type": "object",
10469
+ "sef25Required": ["yesNo"],
10470
+ "properties": {
10471
+ "yesNo": {
10472
+ "sef25Ref": "K1.1.1",
10473
+ "type": "string",
10474
+ "title": "",
10475
+ "enum": ["Yes", "No"]
10476
+ }
10477
+ }
10478
+ },
10421
10479
  "electricVehicleChargingPoint": {
10422
10480
  "ntsRef": "B4.4",
10423
10481
  "nts2Ref": "B4.4",
@@ -15068,6 +15126,7 @@
15068
15126
  "nts2Ref": "C4",
15069
15127
  "ntslRef": "C4",
15070
15128
  "ntsl2Ref": "C4",
15129
+ "sef25Ref": "N1",
15071
15130
  "title": "Notices which Affect the Property",
15072
15131
  "description": "Are you aware of, or have you received, any of the following notices?",
15073
15132
  "type": "object",
@@ -15116,6 +15175,7 @@
15116
15175
  "ta6ed6Ref": "4.2",
15117
15176
  "rdsRef": "Property/Flags,Planning",
15118
15177
  "piqRef": "A4.1",
15178
+ "sef25Ref": "N1.1",
15119
15179
  "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
15120
15180
  "ta6Title": "Is the seller aware of any proposals to develop property or land nearby, or of any proposals to make alterations to buildings nearby?",
15121
15181
  "type": "object",
@@ -21228,6 +21288,7 @@
21228
21288
  "ta6ed6Ref": "12.1",
21229
21289
  "rdsRef": "Services/Electricity",
21230
21290
  "piqRef": "A7.1.1",
21291
+ "sef25Ref": "S1",
21231
21292
  "title": "Electricity supply",
21232
21293
  "type": "object",
21233
21294
  "ntsRequired": [
@@ -21406,6 +21467,7 @@
21406
21467
  "piqRef": "A7.1.17",
21407
21468
  "ta6Ref": "4.6",
21408
21469
  "ta6ed6Ref": "5.6",
21470
+ "sef25Ref": "S1",
21409
21471
  "title": "Solar or photovoltaic panels",
21410
21472
  "type": "object",
21411
21473
  "properties": {
@@ -21482,6 +21544,7 @@
21482
21544
  "ta6ed6Ref": "5.6c",
21483
21545
  "nts2Ref": "B3.7.1",
21484
21546
  "ntsl2Ref": "B3.7.1",
21547
+ "sef25Ref": "S1.1",
21485
21548
  "rdsRef": "Objects/Ownership",
21486
21549
  "piqRef": "B4.4.3",
21487
21550
  "title": "Do you own the panels, and all equipment related to them, outright?",
@@ -21533,6 +21596,38 @@
21533
21596
  "title": "Attachments",
21534
21597
  "type": "string",
21535
21598
  "enum": ["Attached", "To follow"]
21599
+ },
21600
+ "associatedCost": {
21601
+ "sef25Ref": "S1.1",
21602
+ "title": "Associated costs of leased solar panels",
21603
+ "type": "object",
21604
+ "sef25Required": ["frequency"],
21605
+ "properties": {
21606
+ "frequency": {
21607
+ "sef25Ref": "S1.1.2",
21608
+ "title": "Payment frequency if costs are associated",
21609
+ "type": "string",
21610
+ "enum": ["Per month", "Per year", "Not applicable"]
21611
+ }
21612
+ },
21613
+ "oneOf": [
21614
+ {
21615
+ "properties": {
21616
+ "frequency": { "enum": ["Not applicable"] }
21617
+ }
21618
+ },
21619
+ {
21620
+ "properties": {
21621
+ "frequency": { "enum": ["Per month", "Per year"] },
21622
+ "amount": {
21623
+ "sef25Ref": "S1.1.1",
21624
+ "title": "Associated costs of leased solar panels if any (£)",
21625
+ "type": "number"
21626
+ }
21627
+ },
21628
+ "required": ["amount"]
21629
+ }
21630
+ ]
21536
21631
  }
21537
21632
  },
21538
21633
  "baspi4Required": ["details", "attachments"],
@@ -22331,24 +22426,33 @@
22331
22426
  "sef25Ref": "U1.1",
22332
22427
  "title": "Please provide the associated costs for water supply",
22333
22428
  "type": "object",
22334
- "sef25Required": ["amount", "frequency"],
22429
+ "sef25Required": ["frequency"],
22335
22430
  "properties": {
22336
- "amount": {
22337
- "sef25Ref": "U1.1.1",
22338
- "title": "Associated costs of supply if any (£)",
22339
- "type": "number"
22340
- },
22341
22431
  "frequency": {
22342
22432
  "sef25Ref": "U1.1.2",
22343
22433
  "title": "Payment frequency if costs are associated",
22344
22434
  "type": "string",
22345
- "enum": [
22346
- "Per month",
22347
- "Per year",
22348
- "Not applicable"
22349
- ]
22435
+ "enum": ["Per month", "Per year", "Not applicable"]
22350
22436
  }
22351
- }
22437
+ },
22438
+ "oneOf": [
22439
+ {
22440
+ "properties": {
22441
+ "frequency": { "enum": ["Not applicable"] }
22442
+ }
22443
+ },
22444
+ {
22445
+ "properties": {
22446
+ "frequency": { "enum": ["Per month", "Per year"] },
22447
+ "amount": {
22448
+ "sef25Ref": "U1.1.1",
22449
+ "title": "Associated costs of supply if any (£)",
22450
+ "type": "number"
22451
+ }
22452
+ },
22453
+ "required": ["amount"]
22454
+ }
22455
+ ]
22352
22456
  }
22353
22457
  },
22354
22458
  "ntsRequired": ["details"],
@@ -23444,24 +23548,33 @@
23444
23548
  "sef25Ref": "U1.2",
23445
23549
  "title": "Associated costs for sewerage",
23446
23550
  "type": "object",
23447
- "sef25Required": ["amount", "frequency"],
23551
+ "sef25Required": ["frequency"],
23448
23552
  "properties": {
23449
- "amount": {
23450
- "sef25Ref": "U1.2.1",
23451
- "title": "Associated costs for sewerage if any (£)",
23452
- "type": "number"
23453
- },
23454
23553
  "frequency": {
23455
23554
  "sef25Ref": "U1.2.2",
23456
23555
  "title": "Payment frequency if costs are associated",
23457
23556
  "type": "string",
23458
- "enum": [
23459
- "Per month",
23460
- "Per year",
23461
- "Not applicable"
23462
- ]
23557
+ "enum": ["Per month", "Per year", "Not applicable"]
23463
23558
  }
23464
- }
23559
+ },
23560
+ "oneOf": [
23561
+ {
23562
+ "properties": {
23563
+ "frequency": { "enum": ["Not applicable"] }
23564
+ }
23565
+ },
23566
+ {
23567
+ "properties": {
23568
+ "frequency": { "enum": ["Per month", "Per year"] },
23569
+ "amount": {
23570
+ "sef25Ref": "U1.2.1",
23571
+ "title": "Associated costs for sewerage if any (£)",
23572
+ "type": "number"
23573
+ }
23574
+ },
23575
+ "required": ["amount"]
23576
+ }
23577
+ ]
23465
23578
  }
23466
23579
  },
23467
23580
  "ntsRequired": ["offMainsDrainageSystem"],
@@ -25034,6 +25147,7 @@
25034
25147
  "baspi5Ref": "A8",
25035
25148
  "ta6Ref": "6",
25036
25149
  "ta6ed6Ref": "7",
25150
+ "sef25Ref": "I1",
25037
25151
  "title": "Insurance",
25038
25152
  "type": "object",
25039
25153
  "baspi4Required": ["difficultiesObtainingInsurance", "isInsured"],
@@ -25377,6 +25491,7 @@
25377
25491
  "rdsRef": "Insurance/Claims",
25378
25492
  "ta6Ref": "6.5",
25379
25493
  "ta6ed6Ref": "7.3",
25494
+ "sef25Ref": "I1.1",
25380
25495
  "title": "Have you ever made a claim against your building insurance in relation to the property?",
25381
25496
  "Title": "Has the seller made any buildings insurance claims?",
25382
25497
  "ta6ed6Title": "Have you made any buildings insurance claims?",
@@ -25387,6 +25502,7 @@
25387
25502
  "baspi5Ref": "A8.2.1",
25388
25503
  "ta6Ref": "6.5.1",
25389
25504
  "ta6ed6Ref": "7.3.1",
25505
+ "sef25Ref": "I1.1.1",
25390
25506
  "type": "string",
25391
25507
  "title": "",
25392
25508
  "enum": ["Yes", "No"]
@@ -25396,6 +25512,7 @@
25396
25512
  "baspi5Required": ["yesNo"],
25397
25513
  "ta6Required": ["yesNo"],
25398
25514
  "ta6ed6Required": ["yesNo"],
25515
+ "sef25Required": ["yesNo"],
25399
25516
  "discriminator": {
25400
25517
  "propertyName": "yesNo"
25401
25518
  },
@@ -25434,7 +25551,8 @@
25434
25551
  "baspi4Required": ["insuranceClaims"],
25435
25552
  "baspi5Required": ["insuranceClaims"],
25436
25553
  "ta6Required": ["insuranceClaims"],
25437
- "ta6ed6Required": ["insuranceClaims"]
25554
+ "ta6ed6Required": ["insuranceClaims"],
25555
+ "sef25Required": ["insuranceClaims"]
25438
25556
  }
25439
25557
  ]
25440
25558
  },
@@ -25447,6 +25565,7 @@
25447
25565
  "baspi5Ref": "A10",
25448
25566
  "ta6Ref": "8",
25449
25567
  "ta6ed6Ref": "9",
25568
+ "sef25Ref": "R1",
25450
25569
  "title": "Rights and Informal Arrangements",
25451
25570
  "type": "object",
25452
25571
  "baspi4Required": [
@@ -25752,6 +25871,7 @@
25752
25871
  "baspi5Ref": "A10.4",
25753
25872
  "ta6Ref": "8.4",
25754
25873
  "ta6ed6Ref": "9.4",
25874
+ "sef25Ref": "R1",
25755
25875
  "title": "Do you know if any of the following rights or arrangements affect the property?",
25756
25876
  "type": "object",
25757
25877
  "ntsRequired": ["publicRightOfWay"],
@@ -25798,6 +25918,7 @@
25798
25918
  "otherRights",
25799
25919
  "disagreementOrComplaint"
25800
25920
  ],
25921
+ "sef25Required": ["privateRightOfWay"],
25801
25922
  "properties": {
25802
25923
  "publicRightOfWay": {
25803
25924
  "ntsRef": "C2.2.1",
@@ -25886,6 +26007,46 @@
25886
26007
  }
25887
26008
  ]
25888
26009
  },
26010
+ "privateRightOfWay": {
26011
+ "sef25Ref": "R1.1",
26012
+ "title": "A private right of way through and/or across your house, buildings or land",
26013
+ "type": "object",
26014
+ "sef25Required": ["yesNo"],
26015
+ "properties": {
26016
+ "yesNo": {
26017
+ "sef25Ref": "R1.1.1",
26018
+ "type": "string",
26019
+ "title": "",
26020
+ "enum": ["Yes", "No"]
26021
+ }
26022
+ },
26023
+ "discriminator": {
26024
+ "propertyName": "yesNo"
26025
+ },
26026
+ "oneOf": [
26027
+ {
26028
+ "properties": {
26029
+ "yesNo": {
26030
+ "enum": ["No"]
26031
+ }
26032
+ }
26033
+ },
26034
+ {
26035
+ "properties": {
26036
+ "yesNo": {
26037
+ "enum": ["Yes"]
26038
+ },
26039
+ "details": {
26040
+ "sef25Ref": "R1.1.2",
26041
+ "title": "Please provide details",
26042
+ "type": "string",
26043
+ "minLength": 1
26044
+ }
26045
+ },
26046
+ "sef25Required": ["details"]
26047
+ }
26048
+ ]
26049
+ },
25889
26050
  "rightsOfLight": {
25890
26051
  "baspi4Ref": "A10.4.2a",
25891
26052
  "baspi5Ref": "A10.4.2a",
@@ -26412,6 +26573,7 @@
26412
26573
  "ta6Ref": "7",
26413
26574
  "ta6ed6Ref": "8",
26414
26575
  "piqRef": "A11.1",
26576
+ "sef25Ref": "E1",
26415
26577
  "title": "Environmental Issues Affecting the Property",
26416
26578
  "type": "object",
26417
26579
  "baspi4Required": ["flooding", "radon", "otherEnvironmental"],
@@ -26447,6 +26609,7 @@
26447
26609
  ],
26448
26610
  "ta6Required": ["flooding", "radon"],
26449
26611
  "ta6ed6Required": ["flooding", "radon"],
26612
+ "sef25Required": ["stormFireFloodDamage"],
26450
26613
  "properties": {
26451
26614
  "flooding": {
26452
26615
  "ntsRef": "C3.1.1",
@@ -26676,6 +26839,7 @@
26676
26839
  "baspi5Ref": "A11.1.2.1",
26677
26840
  "ta6Ref": "7.1.1",
26678
26841
  "ta6ed6Ref": "8.1.1",
26842
+ "sef25Ref": "E1.2",
26679
26843
  "title": "Has the property been flooded in the last 5 years?",
26680
26844
  "ta6Title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
26681
26845
  "type": "string",
@@ -26804,6 +26968,46 @@
26804
26968
  }
26805
26969
  }
26806
26970
  },
26971
+ "stormFireFloodDamage": {
26972
+ "sef25Ref": "E1.1",
26973
+ "title": "Has the property ever suffered storm, fire or flood damage?",
26974
+ "type": "object",
26975
+ "sef25Required": ["yesNo"],
26976
+ "properties": {
26977
+ "yesNo": {
26978
+ "sef25Ref": "E1.1.1",
26979
+ "type": "string",
26980
+ "title": "",
26981
+ "enum": ["Yes", "No"]
26982
+ }
26983
+ },
26984
+ "discriminator": {
26985
+ "propertyName": "yesNo"
26986
+ },
26987
+ "oneOf": [
26988
+ {
26989
+ "properties": {
26990
+ "yesNo": {
26991
+ "enum": ["No"]
26992
+ }
26993
+ }
26994
+ },
26995
+ {
26996
+ "properties": {
26997
+ "yesNo": {
26998
+ "enum": ["Yes"]
26999
+ },
27000
+ "details": {
27001
+ "sef25Ref": "E1.1.2",
27002
+ "title": "Please provide details",
27003
+ "type": "string",
27004
+ "minLength": 1
27005
+ }
27006
+ },
27007
+ "sef25Required": ["details"]
27008
+ }
27009
+ ]
27010
+ },
26807
27011
  "radon": {
26808
27012
  "baspi4Ref": "A11.1.3",
26809
27013
  "baspi5Ref": "A11.1.3",
@@ -28264,6 +28468,7 @@
28264
28468
  "baspi5Ref": "A12",
28265
28469
  "ta6Ref": "10",
28266
28470
  "ta6ed6Ref": "15",
28471
+ "sef25Ref": "M1",
28267
28472
  "title": "Additional Information",
28268
28473
  "type": "object",
28269
28474
  "baspi4Required": [
@@ -28278,6 +28483,7 @@
28278
28483
  ],
28279
28484
  "ta6Required": ["otherCharges"],
28280
28485
  "ta6ed6Required": ["consents", "furtherInformation"],
28486
+ "sef25Required": ["otherMaterialIssue"],
28281
28487
  "properties": {
28282
28488
  "consents": {
28283
28489
  "ta6ed6Ref": "15.1",
@@ -28390,6 +28596,7 @@
28390
28596
  "baspi5Ref": "A12.2",
28391
28597
  "rdsRef": "Tenure/OtherMaterialIssues",
28392
28598
  "piqRef": "A12.2",
28599
+ "sef25Ref": "M1.1",
28393
28600
  "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?",
28394
28601
  "description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
28395
28602
  "type": "object",
@@ -28398,6 +28605,7 @@
28398
28605
  "baspi4Ref": "A12.2.1",
28399
28606
  "baspi5Ref": "A12.2.1",
28400
28607
  "piqRef": "A12.2.1",
28608
+ "sef25Ref": "M1.1.1",
28401
28609
  "type": "string",
28402
28610
  "title": "",
28403
28611
  "enum": ["Yes", "No"]
@@ -28405,6 +28613,7 @@
28405
28613
  },
28406
28614
  "baspi4Required": ["yesNo"],
28407
28615
  "baspi5Required": ["yesNo"],
28616
+ "sef25Required": ["yesNo"],
28408
28617
  "discriminator": {
28409
28618
  "propertyName": "yesNo"
28410
28619
  },
@@ -28425,6 +28634,7 @@
28425
28634
  "baspi4Ref": "A12.2.2",
28426
28635
  "baspi5Ref": "A12.2.2",
28427
28636
  "piqRef": "A12.2.2",
28637
+ "sef25Ref": "M1.1.2",
28428
28638
  "title": "Please describe this issue and any action that has been taken, if applicable.",
28429
28639
  "type": "string",
28430
28640
  "minLength": 1
@@ -28438,7 +28648,8 @@
28438
28648
  }
28439
28649
  },
28440
28650
  "baspi4Required": ["details"],
28441
- "baspi5Required": ["details"]
28651
+ "baspi5Required": ["details"],
28652
+ "sef25Required": ["details"]
28442
28653
  }
28443
28654
  ]
28444
28655
  },
@@ -29805,12 +30016,14 @@
29805
30016
  "baspi5Ref": "B5",
29806
30017
  "ta6Ref": "5",
29807
30018
  "ta6ed6Ref": "6",
30019
+ "sef25Ref": "W1",
29808
30020
  "title": "Guarantees, Warranties and Indemnity Insurances",
29809
30021
  "type": "object",
29810
30022
  "baspi4Required": ["hasValidGuaranteesOrWarranties"],
29811
30023
  "baspi5Required": ["hasValidGuaranteesOrWarranties"],
29812
30024
  "ta6Required": ["hasValidGuaranteesOrWarranties"],
29813
30025
  "ta6ed6Required": ["hasValidGuaranteesOrWarranties"],
30026
+ "sef25Required": ["hasValidGuaranteesOrWarranties"],
29814
30027
  "properties": {
29815
30028
  "hasValidGuaranteesOrWarranties": {
29816
30029
  "baspi4Ref": "B5.1",
@@ -29819,6 +30032,7 @@
29819
30032
  "ta6ed6Ref": "6.1",
29820
30033
  "rdsRef": "Certificates",
29821
30034
  "piqRef": "B5.1",
30035
+ "sef25Ref": "W1.0",
29822
30036
  "title": "Are there any valid guarantees, warranties or indemnity insurances relating to this property?",
29823
30037
  "type": "string",
29824
30038
  "enum": ["Yes", "No"]
@@ -29847,6 +30061,7 @@
29847
30061
  "ta6ed6Ref": "6.1a",
29848
30062
  "ta6Ref": "5.1a",
29849
30063
  "piqRef": "B5.1.1",
30064
+ "sef25Ref": "W1.1",
29850
30065
  "title": "New Home Warranty (NHBC or similar)",
29851
30066
  "type": "object",
29852
30067
  "properties": {
@@ -29855,6 +30070,7 @@
29855
30070
  "baspi5Ref": "B5.1.1.1",
29856
30071
  "ta6ed6Ref": "6.1a1",
29857
30072
  "ta6Ref": "5.1a1",
30073
+ "sef25Ref": "W1.1.1",
29858
30074
  "type": "string",
29859
30075
  "title": "",
29860
30076
  "enum": ["Yes", "No"]
@@ -29864,6 +30080,7 @@
29864
30080
  "baspi5Required": ["yesNo"],
29865
30081
  "ta6Required": ["yesNo"],
29866
30082
  "ta6ed6Required": ["yesNo"],
30083
+ "sef25Required": ["yesNo"],
29867
30084
  "discriminator": {
29868
30085
  "propertyName": "yesNo"
29869
30086
  },
@@ -29911,6 +30128,7 @@
29911
30128
  "rdsRef": "Certificates",
29912
30129
  "ta6ed6Ref": "6.1e",
29913
30130
  "ta6Ref": "5.1f",
30131
+ "sef25Ref": "W1.2",
29914
30132
  "title": "Roofing work",
29915
30133
  "type": "object",
29916
30134
  "properties": {
@@ -29920,6 +30138,7 @@
29920
30138
  "ta6ed6Ref": "6.1e1",
29921
30139
  "ta6Ref": "5.1f1",
29922
30140
  "piqRef": "B5.1.2",
30141
+ "sef25Ref": "W1.2.1",
29923
30142
  "type": "string",
29924
30143
  "title": "",
29925
30144
  "enum": ["Yes", "No"]
@@ -29929,6 +30148,7 @@
29929
30148
  "baspi5Required": ["yesNo"],
29930
30149
  "ta6Required": ["yesNo"],
29931
30150
  "ta6ed6Required": ["yesNo"],
30151
+ "sef25Required": ["yesNo"],
29932
30152
  "discriminator": {
29933
30153
  "propertyName": "yesNo"
29934
30154
  },
@@ -29969,6 +30189,7 @@
29969
30189
  "ta6ed6Ref": "6.1b",
29970
30190
  "ta6Ref": "5.1b",
29971
30191
  "piqRef": "B5.1.3",
30192
+ "sef25Ref": "W1.3",
29972
30193
  "title": "Damp proofing treatment",
29973
30194
  "type": "object",
29974
30195
  "properties": {
@@ -29977,6 +30198,7 @@
29977
30198
  "baspi5Ref": "B5.1.3.1",
29978
30199
  "ta6ed6Ref": "6.1b1",
29979
30200
  "ta6Ref": "5.1b1",
30201
+ "sef25Ref": "W1.3.1",
29980
30202
  "type": "string",
29981
30203
  "title": "",
29982
30204
  "enum": ["Yes", "No"]
@@ -29985,6 +30207,7 @@
29985
30207
  "baspi4Required": ["yesNo"],
29986
30208
  "baspi5Required": ["yesNo"],
29987
30209
  "ta6Required": ["yesNo"],
30210
+ "sef25Required": ["yesNo"],
29988
30211
  "ta6ed6Required": ["yesNo"],
29989
30212
  "discriminator": {
29990
30213
  "propertyName": "yesNo"
@@ -30083,6 +30306,7 @@
30083
30306
  "ta6ed6Ref": "6.1f",
30084
30307
  "ta6Ref": "5.1g",
30085
30308
  "piqRef": "B5.1.5",
30309
+ "sef25Ref": "W1.4",
30086
30310
  "title": "Central heating and/or plumbing",
30087
30311
  "ta6ed6Title": "Boiler or heating systems",
30088
30312
  "type": "object",
@@ -30092,6 +30316,7 @@
30092
30316
  "baspi5Ref": "B5.1.5.1",
30093
30317
  "ta6ed6Ref": "6.1f1",
30094
30318
  "ta6Ref": "5.1g1",
30319
+ "sef25Ref": "W1.4.1",
30095
30320
  "type": "string",
30096
30321
  "title": "",
30097
30322
  "enum": ["Yes", "No"]
@@ -30101,6 +30326,7 @@
30101
30326
  "baspi5Required": ["yesNo"],
30102
30327
  "ta6Required": ["yesNo"],
30103
30328
  "ta6ed6Required": ["yesNo"],
30329
+ "sef25Required": ["yesNo"],
30104
30330
  "discriminator": {
30105
30331
  "propertyName": "yesNo"
30106
30332
  },
@@ -30230,6 +30456,7 @@
30230
30456
  "rdsRef": "Certificates",
30231
30457
  "ta6Ref": "5.1e",
30232
30458
  "piqRef": "B5.1.7",
30459
+ "sef25Ref": "W1.5",
30233
30460
  "title": "Electrical repair or installation",
30234
30461
  "type": "object",
30235
30462
  "properties": {
@@ -30237,6 +30464,7 @@
30237
30464
  "baspi4Ref": "B5.1.7.1",
30238
30465
  "baspi5Ref": "B5.1.7.1",
30239
30466
  "ta6Ref": "5.1e1",
30467
+ "sef25Ref": "W1.5.1",
30240
30468
  "type": "string",
30241
30469
  "title": "",
30242
30470
  "enum": ["Yes", "No"]
@@ -30244,6 +30472,7 @@
30244
30472
  },
30245
30473
  "baspi4Required": ["yesNo"],
30246
30474
  "baspi5Required": ["yesNo"],
30475
+ "sef25Required": ["yesNo"],
30247
30476
  "ta6Required": ["yesNo"],
30248
30477
  "discriminator": {
30249
30478
  "propertyName": "yesNo"
@@ -30283,6 +30512,7 @@
30283
30512
  "ta6ed6Ref": "6.1g",
30284
30513
  "ta6Ref": "5.1h",
30285
30514
  "piqRef": "B5.1.8",
30515
+ "sef25Ref": "W1.6",
30286
30516
  "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
30287
30517
  "type": "object",
30288
30518
  "properties": {
@@ -30291,6 +30521,7 @@
30291
30521
  "baspi5Ref": "B5.1.8.1",
30292
30522
  "ta6ed6Ref": "6.1g1",
30293
30523
  "ta6Ref": "5.1h1",
30524
+ "sef25Ref": "W1.6.1",
30294
30525
  "type": "string",
30295
30526
  "title": "",
30296
30527
  "enum": ["Yes", "No"]
@@ -30300,6 +30531,7 @@
30300
30531
  "baspi5Required": ["yesNo"],
30301
30532
  "ta6Required": ["yesNo"],
30302
30533
  "ta6ed6Required": ["yesNo"],
30534
+ "sef25Required": ["yesNo"],
30303
30535
  "discriminator": {
30304
30536
  "propertyName": "yesNo"
30305
30537
  },
@@ -30428,6 +30660,7 @@
30428
30660
  "ta6Ref": "5.1i",
30429
30661
  "ta6ed6Ref": "6.1i",
30430
30662
  "piqRef": "B5.1.10",
30663
+ "sef25Ref": "W1.7",
30431
30664
  "title": "Other Guarantees or warranties",
30432
30665
  "type": "object",
30433
30666
  "properties": {
@@ -30436,6 +30669,7 @@
30436
30669
  "baspi5Ref": "B5.1.10.1",
30437
30670
  "ta6ed6Ref": "6.1i1",
30438
30671
  "ta6Ref": "5.1i1",
30672
+ "sef25Ref": "W1.7.1",
30439
30673
  "type": "string",
30440
30674
  "title": "",
30441
30675
  "enum": ["Yes", "No"]
@@ -30445,6 +30679,7 @@
30445
30679
  "baspi5Required": ["yesNo"],
30446
30680
  "ta6Required": ["yesNo"],
30447
30681
  "ta6ed6Required": ["yesNo"],
30682
+ "sef25Required": ["yesNo"],
30448
30683
  "discriminator": {
30449
30684
  "propertyName": "yesNo"
30450
30685
  },
@@ -30698,6 +30933,15 @@
30698
30933
  "otherGuarantees",
30699
30934
  "outstandingClaimsOrApplications",
30700
30935
  "breachOfTermsOrConditions"
30936
+ ],
30937
+ "sef25Required": [
30938
+ "newHomeWarranty",
30939
+ "roofingWork",
30940
+ "dampProofingTreatment",
30941
+ "centralHeatingAndorPlumbing",
30942
+ "electricalRepairOrInstallation",
30943
+ "subsidenceWork",
30944
+ "otherGuarantees"
30701
30945
  ]
30702
30946
  }
30703
30947
  ]