@pdtf/schemas 0.5.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.
@@ -0,0 +1,809 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://homebuyingandsellinggroup.co.uk/schemas/baspi-b-legal-information-1.0.0.json",
4
+ "type": "object",
5
+ "title": "Additional information required for the legal process",
6
+ "description": "A schema defining Part B of BASPI v2.0 spporting mapping to BASPI, Law Society and RICS Data Schema elements.",
7
+ "baspiRef": "B",
8
+ "required": [
9
+ "legalOwnership",
10
+ "aboutTheProperty",
11
+ "servicesCrossing",
12
+ "energyAndMeters",
13
+ "guaranteesWarrantiesAndIndemnityInsurances",
14
+ "occupiers",
15
+ "completionAndMoving",
16
+ "confirmationOfAccuracyByOwners"
17
+ ],
18
+ "properties": {
19
+ "legalOwnership": {
20
+ "baspiRef": "B1",
21
+ "title": "Legal Ownership",
22
+ "type": "object",
23
+ "required": [
24
+ "namesOfLegalOwners",
25
+ "sellersConveyancer",
26
+ "sellersCapacity"
27
+ ],
28
+ "properties": {
29
+ "namesOfLegalOwners": {
30
+ "baspiRef": "B1.1",
31
+ "RDSRef": "RightsHolders",
32
+ "title": "Full names of all legal owner(s)",
33
+ "type": "array",
34
+ "minItems": 1,
35
+ "items": {
36
+ "type": "object",
37
+ "title": "Owner name",
38
+ "required": ["firstName", "lastName"],
39
+ "properties": {
40
+ "firstName": {
41
+ "baspiRef": "B1.1.1",
42
+ "title": "First name",
43
+ "type": "string"
44
+ },
45
+ "middleNames": {
46
+ "baspiRef": "B1.1.2",
47
+ "title": "Middle names",
48
+ "type": "string"
49
+ },
50
+ "lastName": {
51
+ "baspiRef": "B1.1.3",
52
+ "title": "Last name",
53
+ "type": "string"
54
+ }
55
+ }
56
+ }
57
+ },
58
+ "sellersConveyancer": {
59
+ "baspiRef": "B1.2",
60
+ "RDSRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
61
+ "title": "Sellers Conveyancer",
62
+ "type": "object",
63
+ "required": [
64
+ "firstName",
65
+ "lastName",
66
+ "address",
67
+ "email",
68
+ "reference"
69
+ ],
70
+ "properties": {
71
+ "firstName": {
72
+ "title": "First name",
73
+ "type": "string"
74
+ },
75
+ "lastName": {
76
+ "title": "Last name",
77
+ "type": "string"
78
+ },
79
+ "address": {
80
+ "title": "Address",
81
+ "$ref": "#/$defs/address"
82
+ },
83
+ "email": {
84
+ "title": "Email address",
85
+ "type": "string",
86
+ "format": "email"
87
+ },
88
+ "reference": {
89
+ "title": "Reference",
90
+ "type": "string"
91
+ }
92
+ }
93
+ },
94
+ "sellersCapacity": {
95
+ "baspiRef": "B1.3",
96
+ "RDSRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
97
+ "title": "Capacity in which the Seller sells",
98
+ "description": "If necessary please provide your property lawyer with any probate, grant of representation or power of attorney.",
99
+ "type": "object",
100
+ "required": ["capacity"],
101
+ "properties": {
102
+ "capacity": {
103
+ "type": "string",
104
+ "title": "",
105
+ "enum": [
106
+ "Legal Owner",
107
+ "Personal Representative for a Deceased Owner",
108
+ "Under Power of Attorney",
109
+ "Mortgagee in Possession",
110
+ "Other (please give details)"
111
+ ]
112
+ }
113
+ },
114
+ "dependencies": {
115
+ "capacity": {
116
+ "oneOf": [
117
+ {
118
+ "properties": {
119
+ "capacity": {
120
+ "enum": ["Legal Owner", "Mortgagee in Possession"]
121
+ }
122
+ }
123
+ },
124
+ {
125
+ "properties": {
126
+ "capacity": {
127
+ "enum": [
128
+ "Personal Representative for a Deceased Owner",
129
+ "Under Power of Attorney",
130
+ "Other (please give details)"
131
+ ]
132
+ },
133
+ "probateOrPowerOfAttorney": {
134
+ "baspiRef": "B1.4",
135
+ "RDSRef": "Participants/OtherDocumentation",
136
+ "title": "Please provide details.",
137
+ "type": "string"
138
+ }
139
+ },
140
+ "required": ["probateOrPowerOfAttorney"]
141
+ }
142
+ ]
143
+ }
144
+ }
145
+ }
146
+ }
147
+ },
148
+ "aboutTheProperty": {
149
+ "baspiRef": "B2",
150
+ "title": "About the Property",
151
+ "type": "object",
152
+ "required": [
153
+ "legalBoundaries",
154
+ "haveBoundaryFeaturesMoved",
155
+ "adjacentLandIncluded",
156
+ "titlePlanAccurate",
157
+ "flyingFreehold"
158
+ ],
159
+ "properties": {
160
+ "legalBoundaries": {
161
+ "baspiRef": "B2.1",
162
+ "title": "Legal Boundaries",
163
+ "description": "Please indicate who has repaired, or treated as belonging to them, each of the boundaries. Identify each boundary as if you were looking at the property from the road",
164
+ "type": "object",
165
+ "properties": {
166
+ "left": {
167
+ "baspiRef": "B2.1.1",
168
+ "RDSRef": "Tenure/Boundaries",
169
+ "lawSocietyRef": "TA6/1.1a",
170
+ "title": "On the left",
171
+ "type": "string",
172
+ "enum": ["Seller", "Shared", "Next-door neighbour"]
173
+ },
174
+ "right": {
175
+ "baspiRef": "B2.1.2",
176
+ "RDSRef": "Tenure/Boundaries",
177
+ "lawSocietyRef": "TA6/1.1b",
178
+ "title": "On the right",
179
+ "type": "string",
180
+ "enum": ["Seller", "Shared", "Next-door neighbour"]
181
+ },
182
+ "rear": {
183
+ "baspiRef": "B2.1.3",
184
+ "RDSRef": "Tenure/Boundaries",
185
+ "lawSocietyRef": "TA6/1.1c",
186
+ "title": "At the rear",
187
+ "type": "string",
188
+ "enum": ["Seller", "Shared", "Next-door neighbour"]
189
+ },
190
+ "front": {
191
+ "baspiRef": "B2.1.4",
192
+ "RDSRef": "Tenure/Boundaries",
193
+ "lawSocietyRef": "TA6/1.1d",
194
+ "title": "At the front",
195
+ "type": "string",
196
+ "enum": ["Seller", "Shared", "Next-door neighbour"]
197
+ },
198
+ "areBoundariesUniform": {
199
+ "baspiRef": "B2.1.5",
200
+ "RDSRef": "Tenure/Boundaries",
201
+ "lawSocietyRef": "TA6/1.2",
202
+ "title": "Are the boundaries uniform?",
203
+ "$ref": "#/$defs/yesNoDetailIfNo",
204
+ "description": "If no, please indicate ownership or those you have repaired by written description or marking them on a plan of the property"
205
+ }
206
+ },
207
+ "required": ["left", "right", "rear", "front", "areBoundariesUniform"]
208
+ },
209
+ "haveBoundaryFeaturesMoved": {
210
+ "baspiRef": "B2.2",
211
+ "RDSRef": "Tenure/Boundaries",
212
+ "lawSocietyRef": "TA6/1.3",
213
+ "title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
214
+ "$ref": "#/$defs/yesNoDetailIfYes"
215
+ },
216
+ "adjacentLandIncluded": {
217
+ "baspiRef": "B2.3",
218
+ "RDSRef": "Property/Flags,Property/GUID/name='UPRN'&id=?",
219
+ "lawSocietyRef": "TA6/1.4",
220
+ "title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
221
+ "$ref": "#/$defs/yesNoDetailIfYes"
222
+ },
223
+ "titlePlanAccurate": {
224
+ "baspiRef": "B2.4",
225
+ "RDSRef": "Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
226
+ "title": "Does the title plan for the property accurately show the extent of the land and property which you are selling?",
227
+ "$ref": "#/$defs/yesNoDetailIfNo"
228
+ },
229
+ "flyingFreehold": {
230
+ "baspiRef": "B2.5",
231
+ "RDSRef": "Tenure/tenure=?",
232
+ "lawSocietyRef": "TA6/1.5",
233
+ "title": "Is there a flying freehold?",
234
+ "$ref": "#/$defs/yesNoDetailIfYes",
235
+ "description": "NOTE: a flying freehold is when part of the property overhangs a neighbour’s property or an accessway – eg a terrace house where part of the upstairs is over an accessway which belongs to someone else."
236
+ }
237
+ }
238
+ },
239
+ "servicesCrossing": {
240
+ "baspiRef": "B3",
241
+ "title": "Services Crossing Other Property",
242
+ "type": "object",
243
+ "required": [
244
+ "pipesWiresCablesDrainsToProperty",
245
+ "pipesWiresCablesDrainsFromProperty",
246
+ "formalOrInformalAgreements"
247
+ ],
248
+ "properties": {
249
+ "pipesWiresCablesDrainsToProperty": {
250
+ "baspiRef": "B3.1",
251
+ "RDSRef": "Services/.../Located",
252
+ "lawSocietyRef": "TA6/8.7",
253
+ "title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
254
+ "$ref": "#/$defs/yesNoDetailIfYes"
255
+ },
256
+ "pipesWiresCablesDrainsFromProperty": {
257
+ "baspiRef": "B3.2",
258
+ "RDSRef": "Services/.../Located *with Property entities and references for the related properties etc",
259
+ "lawSocietyRef": "TA6/8.8",
260
+ "title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
261
+ "$ref": "#/$defs/yesNoDetailIfYes"
262
+ },
263
+ "formalOrInformalAgreements": {
264
+ "baspiRef": "B3.3",
265
+ "RDSRef": "Services/.../Consent",
266
+ "lawSocietyRef": "TA6/8.9",
267
+ "title": "Are you aware of any formal or informal agreements or arrangements for pipes, wires cables or drains to cross either your property or neighbouring property?",
268
+ "$ref": "#/$defs/yesNoDetailIfYes"
269
+ }
270
+ }
271
+ },
272
+ "energyAndMeters": {
273
+ "baspiRef": "B4",
274
+ "title": "Energy and Meters",
275
+ "type": "object",
276
+ "required": [
277
+ "testedByQualifiedElectrician",
278
+ "electricalWorkSince2005",
279
+ "solarPanels",
280
+ "electricityMeterLocation",
281
+ "gasMeterLocation",
282
+ "stopcockAndWaterMeterLocation"
283
+ ],
284
+ "properties": {
285
+ "testedByQualifiedElectrician": {
286
+ "baspiRef": "B4.1",
287
+ "RDSRef": "Objects/Servicing",
288
+ "lawSocietyRef": "TA6/12.1",
289
+ "title": "Please confirm the year that the electrics at the property were last tested by a qualified electrician.",
290
+ "type": "string",
291
+ "enum": ["Date", "N/A"],
292
+ "description": "If you have not had them tested then select N/A"
293
+ },
294
+ "electricalWorkSince2005": {
295
+ "baspiRef": "B4.2",
296
+ "RDSRef": "WorksAlterationsChanges/Consent,WorksAlterationsChanges/Consent/Certificates",
297
+ "lawSocietyRef": "TA6/12.2",
298
+ "title": "Since 1st January 2005, has any electrical work been carried out to the property?",
299
+ "$ref": "#/$defs/yesNoDetailIfYes",
300
+ "description": "If yes, please provide details and supply the signed Electrical Safety Certificate (BS7671) and Building Regulations Compliance Certificate (or equivalent)"
301
+ },
302
+ "solarPanels": {
303
+ "baspiRef": "B4.3",
304
+ "title": "Solar or photovoltaic panels",
305
+ "type": "object",
306
+ "properties": {
307
+ "hasSolarPanels": {
308
+ "baspiRef": "B.4.3x",
309
+ "RDSRef": "Property/Flags",
310
+ "title": "Are there solar or photovoltaic panels installed at the property?",
311
+ "type": "string",
312
+ "enum": ["Yes", "No"]
313
+ }
314
+ },
315
+ "dependencies": {
316
+ "hasSolarPanels": {
317
+ "oneOf": [
318
+ {
319
+ "properties": {
320
+ "hasSolarPanels": {
321
+ "enum": ["No"]
322
+ }
323
+ }
324
+ },
325
+ {
326
+ "properties": {
327
+ "hasSolarPanels": {
328
+ "enum": ["Yes"]
329
+ },
330
+ "yearInstalled": {
331
+ "baspiRef": "B4.3.1",
332
+ "RDSRef": "Objects/Installation",
333
+ "title": "What year were they installed?",
334
+ "type": "number"
335
+ },
336
+ "panelsOwnedOutright": {
337
+ "baspiRef": "",
338
+ "RDSRef": "Objects/Ownership",
339
+ "title": "Do you own the panels, and all equipment related to them, outright?",
340
+ "$ref": "#/$defs/yesNoDetailIfYes",
341
+ "description": "If yes, provide details of who owns them and the relevant documentation"
342
+ },
343
+ "panelProviderLease": {
344
+ "baspiRef": "B4.3.2",
345
+ "RDSRef": "Objects/Ownership",
346
+ "title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
347
+ "$ref": "#/$defs/yesNoDetailIfYes",
348
+ "description": "If yes, please supply copies of the relevant documents and the name of the provider"
349
+ },
350
+ "lastMaintained": {
351
+ "baspiRef": "B4.3.4",
352
+ "RDSRef": "Objects/Servicing",
353
+ "title": "When was the system last maintained or serviced?",
354
+ "type": "string",
355
+ "format": "date"
356
+ },
357
+ "inGoodWorkingOrder": {
358
+ "baspiRef": "B4.3.5",
359
+ "RDSRef": "Objects/isNotWorking=yes|no|true|false",
360
+ "title": "Is the system in good working order to your satisfaction?",
361
+ "$ref": "#/$defs/yesNoDetailIfYes"
362
+ },
363
+ "isConnectedToNationalGrid": {
364
+ "baspiRef": "B4.3.6",
365
+ "RDSRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
366
+ "title": "Is the system connected to the National Grid e.g. for feed-in tariffs",
367
+ "$ref": "#/$defs/yesNo"
368
+ }
369
+ }
370
+ }
371
+ ]
372
+ }
373
+ }
374
+ },
375
+ "electricityMeterLocation": {
376
+ "baspiRef": "B4.4",
377
+ "RDSRef": "Objects/class='meters|'&access=?&accessLocation=?",
378
+ "title": "Please describe, or attach a photograph of, the location of any electricity meter (if any)",
379
+ "type": "string"
380
+ },
381
+ "gasMeterLocation": {
382
+ "baspiRef": "B4.5",
383
+ "RDSRef": "Objects/class='meters'&access=?&accessLocation=?",
384
+ "title": "Please describe, or attach a photograph of, the location of any gas meter (if any)",
385
+ "type": "string"
386
+ },
387
+ "stopcockAndWaterMeterLocation": {
388
+ "baspiRef": "B4.6",
389
+ "RDSRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
390
+ "title": "Please describe, or attach a photograph of, the location of the stopcock and water meter (if any)",
391
+ "type": "string"
392
+ }
393
+ }
394
+ },
395
+ "guaranteesWarrantiesAndIndemnityInsurances": {
396
+ "baspiRef": "B5",
397
+ "title": "Guarantees, Warranties and Indemnity Insurances",
398
+ "type": "object",
399
+ "required": ["hasValidGuaranteesOrWarranties"],
400
+ "properties": {
401
+ "hasValidGuaranteesOrWarranties": {
402
+ "baspiRef": "B5.1",
403
+ "RDSRef": "Certificates",
404
+ "title": "Are there any valid guarantees or warranties relating to this property?",
405
+ "type": "string",
406
+ "enum": ["Yes", "No"]
407
+ }
408
+ },
409
+ "dependencies": {
410
+ "hasValidGuaranteesOrWarranties": {
411
+ "oneOf": [
412
+ {
413
+ "properties": {
414
+ "hasValidGuaranteesOrWarranties": {
415
+ "enum": ["No"]
416
+ }
417
+ }
418
+ },
419
+ {
420
+ "properties": {
421
+ "hasValidGuaranteesOrWarranties": {
422
+ "enum": ["Yes"]
423
+ },
424
+ "newHomeWarranty": {
425
+ "baspiRef": "B5.1.1",
426
+ "RDSRef": "Certificates",
427
+ "lawSocietyRef": "TA6/5.1a",
428
+ "title": "New Home Warranty",
429
+ "$ref": "#/$defs/yesNoDetailIfYes",
430
+ "description": "If yes, please confirm the name of the warranty provider and the date of the warranty:"
431
+ },
432
+ "roofingWork": {
433
+ "baspiRef": "B5.1.2",
434
+ "RDSRef": "Certificates",
435
+ "lawSocietyRef": "TA6/5.1f",
436
+ "title": "Roofing work",
437
+ "$ref": "#/$defs/yesNo"
438
+ },
439
+ "dampProofingTreatment": {
440
+ "baspiRef": "B5.1.3",
441
+ "RDSRef": "Certificates",
442
+ "lawSocietyRef": "TA6/5.1b",
443
+ "title": "Damp proofing treatment",
444
+ "$ref": "#/$defs/yesNo"
445
+ },
446
+ "timberRotOrInfestationTreatment": {
447
+ "baspiRef": "B5.1.4",
448
+ "RDSRef": "Certificates",
449
+ "lawSocietyRef": "TA6/5.1c",
450
+ "title": "Timber rot or infestation treatment",
451
+ "$ref": "#/$defs/yesNo"
452
+ },
453
+ "centralHeatingAndorPlumbing": {
454
+ "baspiRef": "B5.1.5",
455
+ "RDSRef": "Certificates",
456
+ "lawSocietyRef": "TA6/5.1g",
457
+ "title": "Central heating and/or plumbing",
458
+ "$ref": "#/$defs/yesNo"
459
+ },
460
+ "doubleGlazing": {
461
+ "baspiRef": "B5.1.6",
462
+ "RDSRef": "Certificates",
463
+ "lawSocietyRef": "TA6/5.1d",
464
+ "title": "Double glazing (windows, doors, roof lights, conservatory etc)",
465
+ "$ref": "#/$defs/yesNo"
466
+ },
467
+ "electricalRepairOrInstallation": {
468
+ "baspiRef": "B5.1.7",
469
+ "RDSRef": "Certificates",
470
+ "lawSocietyRef": "TA6/5.1e",
471
+ "title": "Electrical repair or installation",
472
+ "$ref": "#/$defs/yesNo"
473
+ },
474
+ "subsidenceWork": {
475
+ "baspiRef": "B5.1.8",
476
+ "RDSRef": "Certificates",
477
+ "lawSocietyRef": "TA6/5.1h",
478
+ "title": "Preventative work and/or remedial action relating to subsidence",
479
+ "$ref": "#/$defs/yesNo"
480
+ },
481
+ "solarPanels": {
482
+ "baspiRef": "B5.1.9",
483
+ "RDSRef": "Certificates",
484
+ "title": "Solar panels",
485
+ "$ref": "#/$defs/yesNo"
486
+ },
487
+ "otherGuarantees": {
488
+ "baspiRef": "B5.1.10",
489
+ "RDSRef": "Certificates",
490
+ "lawSocietyRef": "TA6/5.1i",
491
+ "title": "Other Guarantees or Warranties",
492
+ "$ref": "#/$defs/yesNo"
493
+ },
494
+ "willLeaveGuaranteePaperwork": {
495
+ "baspiRef": "B5.1.11",
496
+ "RDSRef": "Property/Flags",
497
+ "title": "Please confirm that you will leave all paperwork relating to any guarantee or warranty at the property when you move out",
498
+ "$ref": "#/$defs/yesNo"
499
+ },
500
+ "outstandingClaimsOrApplications": {
501
+ "baspiRef": "B5.2",
502
+ "RDSRef": "Certificates",
503
+ "lawSocietyRef": "TA6/5.2",
504
+ "title": "Are there any outstanding claims or current applications relating to any of the above?",
505
+ "$ref": "#/$defs/yesNoDetailIfYes"
506
+ },
507
+ "titleDefectInsurance": {
508
+ "baspiRef": "B5.3",
509
+ "RDSRef": "Certificates",
510
+ "title": "Do you have any title defect insurance policies e.g. for breach of planning permission, buildings regulations, restrictions, chancel repair etc",
511
+ "$ref": "#/$defs/yesNoDetailIfYes",
512
+ "description": "If yes, please provide details and give the policy to your property lawyer"
513
+ }
514
+ },
515
+ "required": [
516
+ "newHomeWarranty",
517
+ "roofingWork",
518
+ "dampProofingTreatment",
519
+ "timberRotOrInfestationTreatment",
520
+ "centralHeatingAndorPlumbing",
521
+ "doubleGlazing",
522
+ "electricalRepairOrInstallation",
523
+ "subsidenceWork",
524
+ "solarPanels",
525
+ "otherGuarantees",
526
+ "willLeaveGuaranteePaperwork",
527
+ "outstandingClaimsOrApplications",
528
+ "titleDefectInsurance"
529
+ ]
530
+ }
531
+ ]
532
+ }
533
+ }
534
+ },
535
+ "occupiers": {
536
+ "baspiRef": "B6",
537
+ "title": "Occupiers",
538
+ "type": "object",
539
+ "required": [
540
+ "sellerLivesAtProperty",
541
+ "otherOver17sAtProperty",
542
+ "over17sWillSignToConfirmWillVacate"
543
+ ],
544
+ "properties": {
545
+ "sellerLivesAtProperty": {
546
+ "baspiRef": "B6.1",
547
+ "RDSRef": "Property/Flags",
548
+ "lawSocietyRef": "TA6/11.1",
549
+ "title": "Does the seller live at the property?",
550
+ "$ref": "#/$defs/yesNo"
551
+ },
552
+ "otherOver17sAtProperty": {
553
+ "baspiRef": "B6.2",
554
+ "RDSRef": "Participants",
555
+ "lawSocietyRef": "TA6/11.3",
556
+ "title": "Please specify the full names and ages of anyone aged over 17, other than the owner(s), who live at the property?",
557
+ "type": "array",
558
+ "items": {
559
+ "$ref": "#/$defs/fullNameAndAge"
560
+ }
561
+ },
562
+ "over17sWillSignToConfirmWillVacate": {
563
+ "baspiRef": "B6.4",
564
+ "RDSRef": "RightsHolders,TenureAgreements,Notifications",
565
+ "lawSocietyRef": "TA6/11.5",
566
+ "title": "Have all occupiers aged over 17, agreed to sign the contract to confirm that they will vacate the property prior to completion of the sale?",
567
+ "$ref": "#/$defs/yesNoDetailIfNo",
568
+ "description": "If 'No', please provide details (e.g. the property is sold let to tenants) and supply a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them."
569
+ }
570
+ }
571
+ },
572
+ "completionAndMoving": {
573
+ "baspiRef": "B7",
574
+ "title": "Completion and Moving",
575
+ "type": "object",
576
+ "required": [
577
+ "willRemoveAllRubbish",
578
+ "otherPropertyInChain",
579
+ "moveRestrictionDates"
580
+ ],
581
+ "properties": {
582
+ "willRemoveAllRubbish": {
583
+ "baspiRef": "B7.1",
584
+ "RDSRef": "RightsHolders/Flags",
585
+ "lawSocietyRef": "TA6/14.4",
586
+ "title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
587
+ "description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services eg doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know.",
588
+ "type": "boolean",
589
+ "const": true
590
+ },
591
+ "otherPropertyInChain": {
592
+ "baspiRef": "B7.2",
593
+ "RDSRef": "RightsHolders/Flags",
594
+ "lawSocietyRef": "TA6/14.1",
595
+ "title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
596
+ "$ref": "#/$defs/yesNoDetailIfYes"
597
+ },
598
+ "moveRestrictionDates": {
599
+ "baspiRef": "B7.3",
600
+ "RDSRef": "RightsHolders/Text",
601
+ "lawSocietyRef": "TA6/14.2",
602
+ "title": "Are there any dates on which you cannot move? [Note: The moving date will not be fixed until contracts are exchanged i.e. have become binding. Until then you should only make provisional removal arrangements.]",
603
+ "$ref": "#/$defs/yesNoDetailIfYes",
604
+ "description": "If yes, please give details of dates on which the seller cannot complete/move [Note: you do not need to be physically present on the day of Completion so long as the property is cleared]. Note: Timescales to completion vary depending on the complexity of the transaction, length of the chain and requirements of the people involved."
605
+ }
606
+ }
607
+ },
608
+ "confirmationOfAccuracyByOwners": {
609
+ "baspiRef": "B8",
610
+ "title": "Confirmation to be supplied by all owners or their representative",
611
+ "type": "object",
612
+ "required": [
613
+ "confirmWillProvideAdditionalDocumentation",
614
+ "confirmInformationIsAccurate"
615
+ ],
616
+ "properties": {
617
+ "confirmWillProvideAdditionalDocumentation": {
618
+ "baspiRef": "B8.1",
619
+ "title": "I/we will provide my property lawyer with the additional documentation in support of the information supplied on this form.",
620
+ "type": "boolean",
621
+ "const": true
622
+ },
623
+ "confirmInformationIsAccurate": {
624
+ "baspiRef": "B8.2",
625
+ "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. All sellers should sign this form",
626
+ "type": "boolean",
627
+ "const": true
628
+ }
629
+ }
630
+ }
631
+ },
632
+ "$defs": {
633
+ "yesNo": {
634
+ "type": "object",
635
+ "properties": {
636
+ "yesNo": {
637
+ "type": "string",
638
+ "title": "",
639
+ "enum": ["Yes", "No"]
640
+ }
641
+ },
642
+ "required": ["yesNo"]
643
+ },
644
+ "yesNoDetailIfYes": {
645
+ "type": "object",
646
+ "properties": {
647
+ "yesNo": {
648
+ "type": "string",
649
+ "title": "",
650
+ "enum": ["Yes", "No"]
651
+ }
652
+ },
653
+ "required": ["yesNo"],
654
+ "dependencies": {
655
+ "yesNo": {
656
+ "oneOf": [
657
+ {
658
+ "properties": {
659
+ "yesNo": {
660
+ "enum": ["No"]
661
+ }
662
+ },
663
+ "additionalProperties": false
664
+ },
665
+ {
666
+ "properties": {
667
+ "yesNo": {
668
+ "enum": ["Yes"]
669
+ },
670
+ "details": {
671
+ "title": "Details",
672
+ "type": "string",
673
+ "minLength": 1
674
+ }
675
+ },
676
+ "required": ["details"]
677
+ }
678
+ ]
679
+ }
680
+ }
681
+ },
682
+ "yesNoDetailIfNo": {
683
+ "type": "object",
684
+ "properties": {
685
+ "yesNo": {
686
+ "type": "string",
687
+ "title": "",
688
+ "enum": ["Yes", "No"]
689
+ }
690
+ },
691
+ "required": ["yesNo"],
692
+ "dependencies": {
693
+ "yesNo": {
694
+ "oneOf": [
695
+ {
696
+ "properties": {
697
+ "yesNo": {
698
+ "enum": ["Yes"]
699
+ }
700
+ },
701
+ "additionalProperties": false
702
+ },
703
+ {
704
+ "properties": {
705
+ "yesNo": {
706
+ "enum": ["No"]
707
+ },
708
+ "details": {
709
+ "title": "Details",
710
+ "type": "string",
711
+ "minLength": 1
712
+ }
713
+ },
714
+ "required": ["details"]
715
+ }
716
+ ]
717
+ }
718
+ }
719
+ },
720
+ "yesNoNotRequiredDetailIfNoNotRequired": {
721
+ "type": "object",
722
+ "properties": {
723
+ "yesNo": {
724
+ "type": "string",
725
+ "title": "",
726
+ "enum": ["Yes", "No", "Not required"]
727
+ }
728
+ },
729
+ "required": ["yesNo"],
730
+ "dependencies": {
731
+ "yesNo": {
732
+ "oneOf": [
733
+ {
734
+ "properties": {
735
+ "yesNo": {
736
+ "enum": ["Yes"]
737
+ }
738
+ },
739
+ "additionalProperties": false
740
+ },
741
+ {
742
+ "properties": {
743
+ "yesNo": {
744
+ "enum": ["No", "Not required"]
745
+ },
746
+ "reasons": {
747
+ "title": "Please outline the reasons why",
748
+ "type": "string",
749
+ "minLength": 1
750
+ }
751
+ },
752
+ "required": ["reasons"]
753
+ }
754
+ ]
755
+ }
756
+ }
757
+ },
758
+ "address": {
759
+ "type": "object",
760
+ "properties": {
761
+ "address1": {
762
+ "title": "Address 1",
763
+ "type": "string"
764
+ },
765
+ "address2": {
766
+ "title": "Address 2",
767
+ "type": "string"
768
+ },
769
+ "town": {
770
+ "title": "Town",
771
+ "type": "string"
772
+ },
773
+ "county": {
774
+ "title": "County",
775
+ "type": "string"
776
+ },
777
+ "postcode": {
778
+ "title": "Postcode",
779
+ "type": "string"
780
+ }
781
+ },
782
+ "required": ["address1", "postcode"]
783
+ },
784
+ "fullNameAndAge": {
785
+ "type": "object",
786
+ "properties": {
787
+ "firstName": {
788
+ "title": "First Name",
789
+ "type": "string",
790
+ "minLength": 1
791
+ },
792
+ "middleNames": {
793
+ "title": "Middle name(s) if any",
794
+ "type": "string"
795
+ },
796
+ "lastName": {
797
+ "title": "LastName",
798
+ "type": "string",
799
+ "minLength": 1
800
+ },
801
+ "age": {
802
+ "title": "Age",
803
+ "type": "integer"
804
+ }
805
+ },
806
+ "required": ["firstName", "lastName", "age"]
807
+ }
808
+ }
809
+ }