@pdtf/schemas 3.2.0-1 → 3.2.0-3
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.
- package/README.md +5 -0
- package/index.js +3 -3
- package/package.json +1 -1
- package/src/examples/v3/exampleTransaction.json +26 -11
- package/src/schemas/v3/combined.json +3476 -1624
- package/src/schemas/v3/overlays/{baspi.json → baspi4.json} +1083 -900
- package/src/schemas/v3/overlays/baspi5.json +8018 -0
- package/src/schemas/v3/overlays/nts.json +82 -2
- package/src/schemas/v3/overlays/ntsl.json +82 -2
- package/src/schemas/v3/overlays/oc1.json +26 -8
- package/src/schemas/v3/overlays/piq.json +212 -149
- package/src/schemas/v3/overlays/rds.json +41 -36
- package/src/schemas/v3/overlays/ta6.json +181 -157
- package/src/schemas/v3/pdtf-transaction.json +639 -234
- package/src/schemas/v3/skeleton.json +51 -6
- package/src/schemas/verifiedClaims/README.md +12 -0
- package/src/schemas/{v1 → verifiedClaims}/pdtf-verified-claims.json +1 -1
- package/src/tests/v3/transactionSchema.test.js +4 -4
- package/src/utils/extractOverlay.js +2 -1
|
@@ -41,6 +41,18 @@
|
|
|
41
41
|
"title": "Name",
|
|
42
42
|
"type": "object",
|
|
43
43
|
"properties": {
|
|
44
|
+
"title": {
|
|
45
|
+
"title": "Title or honorific",
|
|
46
|
+
"type": "string",
|
|
47
|
+
"enum": [
|
|
48
|
+
"Mr",
|
|
49
|
+
"Mrs",
|
|
50
|
+
"Miss",
|
|
51
|
+
"Ms",
|
|
52
|
+
"Mx",
|
|
53
|
+
"Dr"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
44
56
|
"firstName": {
|
|
45
57
|
"title": "First name",
|
|
46
58
|
"type": "string",
|
|
@@ -55,6 +67,10 @@
|
|
|
55
67
|
"type": "string",
|
|
56
68
|
"minLength": 1
|
|
57
69
|
},
|
|
70
|
+
"maidenName": {
|
|
71
|
+
"title": "Middle name(s)",
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
58
74
|
"preferredName": {
|
|
59
75
|
"title": "Preferred name / known as",
|
|
60
76
|
"type": "string"
|
|
@@ -79,6 +95,24 @@
|
|
|
79
95
|
"title": "Address",
|
|
80
96
|
"type": "object",
|
|
81
97
|
"properties": {
|
|
98
|
+
"buildingNumber": {
|
|
99
|
+
"title": "Building number",
|
|
100
|
+
"type": "string",
|
|
101
|
+
"minLength": 1
|
|
102
|
+
},
|
|
103
|
+
"buildingName": {
|
|
104
|
+
"title": "Building name",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
"subBuilding": {
|
|
108
|
+
"title": "Sub building name",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"street": {
|
|
112
|
+
"title": "Street",
|
|
113
|
+
"type": "string",
|
|
114
|
+
"minLength": 1
|
|
115
|
+
},
|
|
82
116
|
"line1": {
|
|
83
117
|
"title": "Address 1",
|
|
84
118
|
"type": "string",
|
|
@@ -100,6 +134,23 @@
|
|
|
100
134
|
"title": "Postcode",
|
|
101
135
|
"type": "string",
|
|
102
136
|
"minLength": 1
|
|
137
|
+
},
|
|
138
|
+
"homeNation": {
|
|
139
|
+
"title": "Home nation",
|
|
140
|
+
"type": "string",
|
|
141
|
+
"enum": [
|
|
142
|
+
"England",
|
|
143
|
+
"Wales",
|
|
144
|
+
"Scotland",
|
|
145
|
+
"Northern Ireland"
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
"countryCode": {
|
|
149
|
+
"title": "Country code",
|
|
150
|
+
"description": "ISO 3166-1 alpha-3 country code",
|
|
151
|
+
"type": "string",
|
|
152
|
+
"minLength": 3,
|
|
153
|
+
"maxLength": 3
|
|
103
154
|
}
|
|
104
155
|
}
|
|
105
156
|
},
|
|
@@ -131,73 +182,103 @@
|
|
|
131
182
|
},
|
|
132
183
|
"externalIds": {
|
|
133
184
|
"type": "object"
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"oneOf": [
|
|
188
|
+
{
|
|
138
189
|
"properties": {
|
|
139
|
-
"
|
|
140
|
-
"type": "string",
|
|
141
|
-
"title": "",
|
|
190
|
+
"role": {
|
|
142
191
|
"enum": [
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
192
|
+
"Buyer",
|
|
193
|
+
"Seller's Conveyancer",
|
|
194
|
+
"Prospective Buyer",
|
|
195
|
+
"Buyer's Conveyancer",
|
|
196
|
+
"Estate Agent",
|
|
197
|
+
"Buyer's Agent",
|
|
198
|
+
"Surveyor",
|
|
199
|
+
"Mortgage Broker",
|
|
200
|
+
"Lender",
|
|
201
|
+
"Landlord",
|
|
202
|
+
"Tenant"
|
|
148
203
|
]
|
|
149
204
|
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
]
|
|
159
|
-
},
|
|
160
|
-
"sellersCapacityDetails": {
|
|
161
|
-
"title": "Please provide details if applicable",
|
|
162
|
-
"description": "(for example if the sellers names do not match the legal owners on the title deed due to change of name on marriage)",
|
|
163
|
-
"type": "string"
|
|
164
|
-
},
|
|
165
|
-
"attachments": {
|
|
166
|
-
"title": "Attachments",
|
|
167
|
-
"type": "string",
|
|
168
|
-
"enum": [
|
|
169
|
-
"Attached",
|
|
170
|
-
"To follow"
|
|
171
|
-
]
|
|
172
|
-
}
|
|
173
|
-
}
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"properties": {
|
|
209
|
+
"role": {
|
|
210
|
+
"enum": [
|
|
211
|
+
"Seller"
|
|
212
|
+
]
|
|
174
213
|
},
|
|
175
|
-
{
|
|
214
|
+
"sellersCapacity": {
|
|
215
|
+
"title": "Capacity in which the Seller sells",
|
|
216
|
+
"type": "object",
|
|
176
217
|
"properties": {
|
|
177
218
|
"capacity": {
|
|
219
|
+
"type": "string",
|
|
220
|
+
"title": "",
|
|
178
221
|
"enum": [
|
|
222
|
+
"Legal Owner",
|
|
179
223
|
"Personal Representative for a Deceased Owner",
|
|
180
224
|
"Under Power of Attorney",
|
|
225
|
+
"Mortgagee in Possession",
|
|
181
226
|
"Other"
|
|
182
227
|
]
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"oneOf": [
|
|
231
|
+
{
|
|
232
|
+
"properties": {
|
|
233
|
+
"capacity": {
|
|
234
|
+
"enum": [
|
|
235
|
+
"Legal Owner",
|
|
236
|
+
"Mortgagee in Possession"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
"sellersCapacityDetails": {
|
|
240
|
+
"title": "Please provide details if applicable",
|
|
241
|
+
"description": "(for example if the sellers names do not match the legal owners on the title deed due to change of name on marriage)",
|
|
242
|
+
"type": "string"
|
|
243
|
+
},
|
|
244
|
+
"attachments": {
|
|
245
|
+
"title": "Attachments",
|
|
246
|
+
"type": "string",
|
|
247
|
+
"enum": [
|
|
248
|
+
"Attached",
|
|
249
|
+
"To follow"
|
|
250
|
+
]
|
|
251
|
+
}
|
|
252
|
+
}
|
|
183
253
|
},
|
|
184
|
-
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"
|
|
194
|
-
|
|
254
|
+
{
|
|
255
|
+
"properties": {
|
|
256
|
+
"capacity": {
|
|
257
|
+
"enum": [
|
|
258
|
+
"Personal Representative for a Deceased Owner",
|
|
259
|
+
"Under Power of Attorney",
|
|
260
|
+
"Other"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"sellersCapacityDetails": {
|
|
264
|
+
"title": "Please provide details and provide any probate, grant of representation or power of attorney ",
|
|
265
|
+
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
"attachments": {
|
|
268
|
+
"title": "Attachments",
|
|
269
|
+
"type": "string",
|
|
270
|
+
"enum": [
|
|
271
|
+
"Attached",
|
|
272
|
+
"To follow"
|
|
273
|
+
]
|
|
274
|
+
}
|
|
275
|
+
}
|
|
195
276
|
}
|
|
196
|
-
|
|
277
|
+
]
|
|
197
278
|
}
|
|
198
|
-
|
|
279
|
+
}
|
|
199
280
|
}
|
|
200
|
-
|
|
281
|
+
]
|
|
201
282
|
}
|
|
202
283
|
},
|
|
203
284
|
"propertyPack": {
|
|
@@ -208,6 +289,24 @@
|
|
|
208
289
|
"title": "Property Address",
|
|
209
290
|
"type": "object",
|
|
210
291
|
"properties": {
|
|
292
|
+
"buildingNumber": {
|
|
293
|
+
"title": "Building number",
|
|
294
|
+
"type": "string",
|
|
295
|
+
"minLength": 1
|
|
296
|
+
},
|
|
297
|
+
"buildingName": {
|
|
298
|
+
"title": "Building name",
|
|
299
|
+
"type": "string"
|
|
300
|
+
},
|
|
301
|
+
"subBuilding": {
|
|
302
|
+
"title": "Sub building name",
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
305
|
+
"street": {
|
|
306
|
+
"title": "Street",
|
|
307
|
+
"type": "string",
|
|
308
|
+
"minLength": 1
|
|
309
|
+
},
|
|
211
310
|
"line1": {
|
|
212
311
|
"title": "Address line 1",
|
|
213
312
|
"type": "string",
|
|
@@ -229,6 +328,23 @@
|
|
|
229
328
|
"title": "Postcode",
|
|
230
329
|
"type": "string",
|
|
231
330
|
"minLength": 1
|
|
331
|
+
},
|
|
332
|
+
"homeNation": {
|
|
333
|
+
"title": "Home nation",
|
|
334
|
+
"type": "string",
|
|
335
|
+
"enum": [
|
|
336
|
+
"England",
|
|
337
|
+
"Wales",
|
|
338
|
+
"Scotland",
|
|
339
|
+
"Northern Ireland"
|
|
340
|
+
]
|
|
341
|
+
},
|
|
342
|
+
"countryCode": {
|
|
343
|
+
"title": "Country code",
|
|
344
|
+
"description": "ISO 3166-1 alpha-3 country code",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"minLength": 3,
|
|
347
|
+
"maxLength": 3
|
|
232
348
|
}
|
|
233
349
|
}
|
|
234
350
|
},
|
|
@@ -447,6 +563,64 @@
|
|
|
447
563
|
}
|
|
448
564
|
}
|
|
449
565
|
},
|
|
566
|
+
"saleAtUndervalue": {
|
|
567
|
+
"title": "Is the property being sold at undervalue?",
|
|
568
|
+
"type": "string",
|
|
569
|
+
"enum": [
|
|
570
|
+
"Yes",
|
|
571
|
+
"No"
|
|
572
|
+
]
|
|
573
|
+
},
|
|
574
|
+
"hasHelpToBuyEquityLoan": {
|
|
575
|
+
"title": "Is the property being sold with a Help to Buy equity loan outstanding?",
|
|
576
|
+
"type": "string",
|
|
577
|
+
"enum": [
|
|
578
|
+
"Yes",
|
|
579
|
+
"No"
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"isHMO": {
|
|
583
|
+
"title": "Is the property a House in Multiple Occupation (HMO)?",
|
|
584
|
+
"type": "string",
|
|
585
|
+
"enum": [
|
|
586
|
+
"Yes",
|
|
587
|
+
"No"
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
"isStudentAccommodation": {
|
|
591
|
+
"title": "Is the property student accommodation?",
|
|
592
|
+
"type": "string",
|
|
593
|
+
"enum": [
|
|
594
|
+
"Yes",
|
|
595
|
+
"No"
|
|
596
|
+
]
|
|
597
|
+
},
|
|
598
|
+
"numberOfSellers": {
|
|
599
|
+
"title": "How many sellers are involved in the transaction?",
|
|
600
|
+
"description": "This may differ from the number of legal owners, for example if the property is being sold by executors of a deceased owner",
|
|
601
|
+
"type": "integer"
|
|
602
|
+
},
|
|
603
|
+
"numberOfNonUkResidentSellers": {
|
|
604
|
+
"title": "How many sellers are involved in the transaction who are resident outside the UK?",
|
|
605
|
+
"description": "This may differ from the number of legal owners, for example if the property is being sold by executors of a deceased owner",
|
|
606
|
+
"type": "integer"
|
|
607
|
+
},
|
|
608
|
+
"isFirstRegistration": {
|
|
609
|
+
"title": "Is this the first time the property is to be registered with HMLR?",
|
|
610
|
+
"type": "string",
|
|
611
|
+
"enum": [
|
|
612
|
+
"Yes",
|
|
613
|
+
"No"
|
|
614
|
+
]
|
|
615
|
+
},
|
|
616
|
+
"isLimitedCompanySale": {
|
|
617
|
+
"title": "Is the property being sold by a Limited Company?",
|
|
618
|
+
"type": "string",
|
|
619
|
+
"enum": [
|
|
620
|
+
"Yes",
|
|
621
|
+
"No"
|
|
622
|
+
]
|
|
623
|
+
},
|
|
450
624
|
"buildInformation": {
|
|
451
625
|
"title": "About the property building",
|
|
452
626
|
"type": "object",
|
|
@@ -535,7 +709,7 @@
|
|
|
535
709
|
"properties": {
|
|
536
710
|
"isLocatedOverCommercialPremises": {
|
|
537
711
|
"type": "string",
|
|
538
|
-
"title": "Is the property located
|
|
712
|
+
"title": "Is the property located in a building which includes commercial property E.g. shops, offices etc?",
|
|
539
713
|
"enum": [
|
|
540
714
|
"Yes",
|
|
541
715
|
"No"
|
|
@@ -5369,6 +5543,14 @@
|
|
|
5369
5543
|
"type": "string",
|
|
5370
5544
|
"minLength": 1
|
|
5371
5545
|
},
|
|
5546
|
+
"contributionIncludedInServiceCharge": {
|
|
5547
|
+
"title": "Is the annual contribution included in the stated service charge?",
|
|
5548
|
+
"type": "string",
|
|
5549
|
+
"enum": [
|
|
5550
|
+
"Yes",
|
|
5551
|
+
"No"
|
|
5552
|
+
]
|
|
5553
|
+
},
|
|
5372
5554
|
"sufficentToCoverSection20Expenditure": {
|
|
5373
5555
|
"title": "Is the amount expected to be sufficient to cover the known Section 20 expenditure?",
|
|
5374
5556
|
"type": "object",
|
|
@@ -7370,7 +7552,71 @@
|
|
|
7370
7552
|
"Not known"
|
|
7371
7553
|
]
|
|
7372
7554
|
}
|
|
7373
|
-
}
|
|
7555
|
+
},
|
|
7556
|
+
"oneOf": [
|
|
7557
|
+
{
|
|
7558
|
+
"properties": {
|
|
7559
|
+
"yesNo": {
|
|
7560
|
+
"enum": [
|
|
7561
|
+
"No",
|
|
7562
|
+
"Not known"
|
|
7563
|
+
]
|
|
7564
|
+
}
|
|
7565
|
+
}
|
|
7566
|
+
},
|
|
7567
|
+
{
|
|
7568
|
+
"properties": {
|
|
7569
|
+
"yesNo": {
|
|
7570
|
+
"enum": [
|
|
7571
|
+
"Yes"
|
|
7572
|
+
]
|
|
7573
|
+
},
|
|
7574
|
+
"annualCostOfPermit": {
|
|
7575
|
+
"title": "Annual cost of permit (£)",
|
|
7576
|
+
"type": "number"
|
|
7577
|
+
}
|
|
7578
|
+
}
|
|
7579
|
+
}
|
|
7580
|
+
]
|
|
7581
|
+
},
|
|
7582
|
+
"vehicleTypeRestriction": {
|
|
7583
|
+
"title": "Is there a restriction on the types of vehicle which may be parked?",
|
|
7584
|
+
"type": "object",
|
|
7585
|
+
"properties": {
|
|
7586
|
+
"yesNo": {
|
|
7587
|
+
"type": "string",
|
|
7588
|
+
"title": "",
|
|
7589
|
+
"enum": [
|
|
7590
|
+
"Yes",
|
|
7591
|
+
"No"
|
|
7592
|
+
]
|
|
7593
|
+
}
|
|
7594
|
+
},
|
|
7595
|
+
"oneOf": [
|
|
7596
|
+
{
|
|
7597
|
+
"properties": {
|
|
7598
|
+
"yesNo": {
|
|
7599
|
+
"enum": [
|
|
7600
|
+
"No"
|
|
7601
|
+
]
|
|
7602
|
+
}
|
|
7603
|
+
}
|
|
7604
|
+
},
|
|
7605
|
+
{
|
|
7606
|
+
"properties": {
|
|
7607
|
+
"yesNo": {
|
|
7608
|
+
"enum": [
|
|
7609
|
+
"Yes"
|
|
7610
|
+
]
|
|
7611
|
+
},
|
|
7612
|
+
"details": {
|
|
7613
|
+
"title": "Please provide details of the restriction",
|
|
7614
|
+
"type": "string",
|
|
7615
|
+
"minLength": 1
|
|
7616
|
+
}
|
|
7617
|
+
}
|
|
7618
|
+
}
|
|
7619
|
+
]
|
|
7374
7620
|
},
|
|
7375
7621
|
"electricVehicleChargingPoint": {
|
|
7376
7622
|
"title": "Is there an electric vehicle charging point belonging to the property?",
|
|
@@ -7385,6 +7631,20 @@
|
|
|
7385
7631
|
]
|
|
7386
7632
|
}
|
|
7387
7633
|
}
|
|
7634
|
+
},
|
|
7635
|
+
"locatedInUlez": {
|
|
7636
|
+
"title": "Is the property and/or parking located in an Ultra Low Emission Zone (ULEZ)?",
|
|
7637
|
+
"type": "object",
|
|
7638
|
+
"properties": {
|
|
7639
|
+
"yesNo": {
|
|
7640
|
+
"type": "string",
|
|
7641
|
+
"title": "",
|
|
7642
|
+
"enum": [
|
|
7643
|
+
"Yes",
|
|
7644
|
+
"No"
|
|
7645
|
+
]
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7388
7648
|
}
|
|
7389
7649
|
}
|
|
7390
7650
|
},
|
|
@@ -15267,9 +15527,88 @@
|
|
|
15267
15527
|
}
|
|
15268
15528
|
]
|
|
15269
15529
|
},
|
|
15530
|
+
"heatPump": {
|
|
15531
|
+
"title": "Ground or air source heat pump",
|
|
15532
|
+
"type": "object",
|
|
15533
|
+
"properties": {
|
|
15534
|
+
"yesNo": {
|
|
15535
|
+
"type": "string",
|
|
15536
|
+
"title": "",
|
|
15537
|
+
"enum": [
|
|
15538
|
+
"Yes",
|
|
15539
|
+
"To be connected",
|
|
15540
|
+
"No"
|
|
15541
|
+
]
|
|
15542
|
+
}
|
|
15543
|
+
},
|
|
15544
|
+
"oneOf": [
|
|
15545
|
+
{
|
|
15546
|
+
"properties": {
|
|
15547
|
+
"yesNo": {
|
|
15548
|
+
"enum": [
|
|
15549
|
+
"No"
|
|
15550
|
+
]
|
|
15551
|
+
}
|
|
15552
|
+
}
|
|
15553
|
+
},
|
|
15554
|
+
{
|
|
15555
|
+
"properties": {
|
|
15556
|
+
"yesNo": {
|
|
15557
|
+
"enum": [
|
|
15558
|
+
"Yes"
|
|
15559
|
+
]
|
|
15560
|
+
},
|
|
15561
|
+
"details": {
|
|
15562
|
+
"title": "Details",
|
|
15563
|
+
"type": "string"
|
|
15564
|
+
},
|
|
15565
|
+
"supplier": {
|
|
15566
|
+
"title": "Supplier",
|
|
15567
|
+
"type": "string"
|
|
15568
|
+
},
|
|
15569
|
+
"dateInstalled": {
|
|
15570
|
+
"title": "Date installed",
|
|
15571
|
+
"type": "string",
|
|
15572
|
+
"format": "date"
|
|
15573
|
+
},
|
|
15574
|
+
"attachments": {
|
|
15575
|
+
"title": "If after 2013 please provide Building Regulations approval / MCS Certificate or equivalent.",
|
|
15576
|
+
"type": "string",
|
|
15577
|
+
"enum": [
|
|
15578
|
+
"Attached",
|
|
15579
|
+
"To follow",
|
|
15580
|
+
"Not applicable"
|
|
15581
|
+
]
|
|
15582
|
+
}
|
|
15583
|
+
}
|
|
15584
|
+
},
|
|
15585
|
+
{
|
|
15586
|
+
"properties": {
|
|
15587
|
+
"yesNo": {
|
|
15588
|
+
"enum": [
|
|
15589
|
+
"To be connected"
|
|
15590
|
+
]
|
|
15591
|
+
},
|
|
15592
|
+
"details": {
|
|
15593
|
+
"title": "Details",
|
|
15594
|
+
"type": "string"
|
|
15595
|
+
},
|
|
15596
|
+
"dateToBeConnected": {
|
|
15597
|
+
"title": "Date to be connected",
|
|
15598
|
+
"type": "string",
|
|
15599
|
+
"format": "date"
|
|
15600
|
+
},
|
|
15601
|
+
"supplier": {
|
|
15602
|
+
"title": "Supplier",
|
|
15603
|
+
"type": "string"
|
|
15604
|
+
}
|
|
15605
|
+
}
|
|
15606
|
+
}
|
|
15607
|
+
]
|
|
15608
|
+
},
|
|
15270
15609
|
"otherSources": {
|
|
15271
15610
|
"title": "Other sources",
|
|
15272
|
-
"description": "Other sources include wind turbines, generators and other renewable technologies
|
|
15611
|
+
"description": "Other sources include wind turbines, generators and other renewable technologies. If you receive Renewable Heat Incentives please provide details and note that you will need to advise Ofgem when you complete the sale",
|
|
15273
15612
|
"type": "object",
|
|
15274
15613
|
"properties": {
|
|
15275
15614
|
"yesNo": {
|
|
@@ -16663,11 +17002,11 @@
|
|
|
16663
17002
|
"properties": {
|
|
16664
17003
|
"heatingType": {
|
|
16665
17004
|
"enum": [
|
|
16666
|
-
"
|
|
17005
|
+
"Communal heating system"
|
|
16667
17006
|
]
|
|
16668
17007
|
},
|
|
16669
17008
|
"details": {
|
|
16670
|
-
"title": "
|
|
17009
|
+
"title": "Communal heating system details",
|
|
16671
17010
|
"description": "Please describe how the cost of heating supply is charged, whether you have control over the energy supplier and whether you have any control over the heating.",
|
|
16672
17011
|
"type": "string",
|
|
16673
17012
|
"minLength": 1
|
|
@@ -17017,207 +17356,207 @@
|
|
|
17017
17356
|
"title": "Insurance",
|
|
17018
17357
|
"type": "object",
|
|
17019
17358
|
"properties": {
|
|
17020
|
-
"
|
|
17021
|
-
"title": "
|
|
17022
|
-
"type": "
|
|
17023
|
-
"enum": [
|
|
17024
|
-
"Yes",
|
|
17025
|
-
"No"
|
|
17026
|
-
]
|
|
17027
|
-
}
|
|
17028
|
-
},
|
|
17029
|
-
"oneOf": [
|
|
17030
|
-
{
|
|
17031
|
-
"properties": {
|
|
17032
|
-
"isInsured": {
|
|
17033
|
-
"enum": [
|
|
17034
|
-
"No"
|
|
17035
|
-
]
|
|
17036
|
-
},
|
|
17037
|
-
"details": {
|
|
17038
|
-
"title": "Why not?",
|
|
17039
|
-
"type": "string",
|
|
17040
|
-
"minLength": 1
|
|
17041
|
-
},
|
|
17042
|
-
"landlordInsuresIfFlat": {
|
|
17043
|
-
"title": "If the property is a flat, does the landlord insure the building?",
|
|
17044
|
-
"type": "string",
|
|
17045
|
-
"enum": [
|
|
17046
|
-
"Yes",
|
|
17047
|
-
"No",
|
|
17048
|
-
"Not applicable"
|
|
17049
|
-
]
|
|
17050
|
-
}
|
|
17051
|
-
}
|
|
17052
|
-
},
|
|
17053
|
-
{
|
|
17359
|
+
"difficultiesObtainingInsurance": {
|
|
17360
|
+
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
|
|
17361
|
+
"type": "object",
|
|
17054
17362
|
"properties": {
|
|
17055
|
-
"
|
|
17056
|
-
"
|
|
17057
|
-
"Yes"
|
|
17058
|
-
]
|
|
17059
|
-
},
|
|
17060
|
-
"difficultiesObtainingInsurance": {
|
|
17061
|
-
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
|
|
17363
|
+
"abnormalRiseInPremiums": {
|
|
17364
|
+
"title": "Subject to abnormal rise in premiums?",
|
|
17062
17365
|
"type": "object",
|
|
17063
17366
|
"properties": {
|
|
17064
|
-
"
|
|
17065
|
-
"
|
|
17066
|
-
"
|
|
17367
|
+
"yesNo": {
|
|
17368
|
+
"type": "string",
|
|
17369
|
+
"title": "",
|
|
17370
|
+
"enum": [
|
|
17371
|
+
"Yes",
|
|
17372
|
+
"No"
|
|
17373
|
+
]
|
|
17374
|
+
}
|
|
17375
|
+
},
|
|
17376
|
+
"oneOf": [
|
|
17377
|
+
{
|
|
17067
17378
|
"properties": {
|
|
17068
17379
|
"yesNo": {
|
|
17069
|
-
"type": "string",
|
|
17070
|
-
"title": "",
|
|
17071
17380
|
"enum": [
|
|
17072
|
-
"Yes",
|
|
17073
17381
|
"No"
|
|
17074
17382
|
]
|
|
17075
17383
|
}
|
|
17076
|
-
}
|
|
17077
|
-
|
|
17078
|
-
|
|
17079
|
-
|
|
17080
|
-
|
|
17081
|
-
|
|
17082
|
-
|
|
17083
|
-
|
|
17084
|
-
}
|
|
17085
|
-
}
|
|
17384
|
+
}
|
|
17385
|
+
},
|
|
17386
|
+
{
|
|
17387
|
+
"properties": {
|
|
17388
|
+
"yesNo": {
|
|
17389
|
+
"enum": [
|
|
17390
|
+
"Yes"
|
|
17391
|
+
]
|
|
17086
17392
|
},
|
|
17087
|
-
{
|
|
17088
|
-
"
|
|
17089
|
-
|
|
17090
|
-
|
|
17091
|
-
"Yes"
|
|
17092
|
-
]
|
|
17093
|
-
},
|
|
17094
|
-
"details": {
|
|
17095
|
-
"title": "Provide details",
|
|
17096
|
-
"type": "string",
|
|
17097
|
-
"minLength": 1
|
|
17098
|
-
}
|
|
17099
|
-
}
|
|
17393
|
+
"details": {
|
|
17394
|
+
"title": "Provide details",
|
|
17395
|
+
"type": "string",
|
|
17396
|
+
"minLength": 1
|
|
17100
17397
|
}
|
|
17398
|
+
}
|
|
17399
|
+
}
|
|
17400
|
+
]
|
|
17401
|
+
},
|
|
17402
|
+
"subjectToHighExcesses": {
|
|
17403
|
+
"title": "Subject to high excesses?",
|
|
17404
|
+
"type": "object",
|
|
17405
|
+
"properties": {
|
|
17406
|
+
"yesNo": {
|
|
17407
|
+
"type": "string",
|
|
17408
|
+
"title": "",
|
|
17409
|
+
"enum": [
|
|
17410
|
+
"Yes",
|
|
17411
|
+
"No"
|
|
17101
17412
|
]
|
|
17102
|
-
}
|
|
17103
|
-
|
|
17104
|
-
|
|
17105
|
-
|
|
17413
|
+
}
|
|
17414
|
+
},
|
|
17415
|
+
"oneOf": [
|
|
17416
|
+
{
|
|
17106
17417
|
"properties": {
|
|
17107
17418
|
"yesNo": {
|
|
17108
|
-
"type": "string",
|
|
17109
|
-
"title": "",
|
|
17110
17419
|
"enum": [
|
|
17111
|
-
"Yes",
|
|
17112
17420
|
"No"
|
|
17113
17421
|
]
|
|
17114
17422
|
}
|
|
17115
|
-
}
|
|
17116
|
-
|
|
17117
|
-
|
|
17118
|
-
|
|
17119
|
-
|
|
17120
|
-
|
|
17121
|
-
|
|
17122
|
-
|
|
17123
|
-
}
|
|
17124
|
-
}
|
|
17423
|
+
}
|
|
17424
|
+
},
|
|
17425
|
+
{
|
|
17426
|
+
"properties": {
|
|
17427
|
+
"yesNo": {
|
|
17428
|
+
"enum": [
|
|
17429
|
+
"Yes"
|
|
17430
|
+
]
|
|
17125
17431
|
},
|
|
17126
|
-
{
|
|
17127
|
-
"
|
|
17128
|
-
|
|
17129
|
-
|
|
17130
|
-
"Yes"
|
|
17131
|
-
]
|
|
17132
|
-
},
|
|
17133
|
-
"details": {
|
|
17134
|
-
"title": "Provide details",
|
|
17135
|
-
"type": "string",
|
|
17136
|
-
"minLength": 1
|
|
17137
|
-
}
|
|
17138
|
-
}
|
|
17432
|
+
"details": {
|
|
17433
|
+
"title": "Provide details",
|
|
17434
|
+
"type": "string",
|
|
17435
|
+
"minLength": 1
|
|
17139
17436
|
}
|
|
17437
|
+
}
|
|
17438
|
+
}
|
|
17439
|
+
]
|
|
17440
|
+
},
|
|
17441
|
+
"subjectToUnusualConditions": {
|
|
17442
|
+
"title": "Subject to unusual conditions?",
|
|
17443
|
+
"type": "object",
|
|
17444
|
+
"properties": {
|
|
17445
|
+
"yesNo": {
|
|
17446
|
+
"type": "string",
|
|
17447
|
+
"title": "",
|
|
17448
|
+
"enum": [
|
|
17449
|
+
"Yes",
|
|
17450
|
+
"No"
|
|
17140
17451
|
]
|
|
17141
|
-
}
|
|
17142
|
-
|
|
17143
|
-
|
|
17144
|
-
|
|
17452
|
+
}
|
|
17453
|
+
},
|
|
17454
|
+
"oneOf": [
|
|
17455
|
+
{
|
|
17145
17456
|
"properties": {
|
|
17146
17457
|
"yesNo": {
|
|
17147
|
-
"type": "string",
|
|
17148
|
-
"title": "",
|
|
17149
17458
|
"enum": [
|
|
17150
|
-
"Yes",
|
|
17151
17459
|
"No"
|
|
17152
17460
|
]
|
|
17153
17461
|
}
|
|
17154
|
-
}
|
|
17155
|
-
|
|
17156
|
-
|
|
17157
|
-
|
|
17158
|
-
|
|
17159
|
-
|
|
17160
|
-
|
|
17161
|
-
|
|
17162
|
-
}
|
|
17163
|
-
}
|
|
17462
|
+
}
|
|
17463
|
+
},
|
|
17464
|
+
{
|
|
17465
|
+
"properties": {
|
|
17466
|
+
"yesNo": {
|
|
17467
|
+
"enum": [
|
|
17468
|
+
"Yes"
|
|
17469
|
+
]
|
|
17164
17470
|
},
|
|
17165
|
-
{
|
|
17166
|
-
"
|
|
17167
|
-
|
|
17168
|
-
|
|
17169
|
-
"Yes"
|
|
17170
|
-
]
|
|
17171
|
-
},
|
|
17172
|
-
"details": {
|
|
17173
|
-
"title": "Provide details",
|
|
17174
|
-
"type": "string",
|
|
17175
|
-
"minLength": 1
|
|
17176
|
-
}
|
|
17177
|
-
}
|
|
17471
|
+
"details": {
|
|
17472
|
+
"title": "Provide details",
|
|
17473
|
+
"type": "string",
|
|
17474
|
+
"minLength": 1
|
|
17178
17475
|
}
|
|
17476
|
+
}
|
|
17477
|
+
}
|
|
17478
|
+
]
|
|
17479
|
+
},
|
|
17480
|
+
"refused": {
|
|
17481
|
+
"title": "Refused?",
|
|
17482
|
+
"type": "object",
|
|
17483
|
+
"properties": {
|
|
17484
|
+
"yesNo": {
|
|
17485
|
+
"type": "string",
|
|
17486
|
+
"title": "",
|
|
17487
|
+
"enum": [
|
|
17488
|
+
"Yes",
|
|
17489
|
+
"No"
|
|
17179
17490
|
]
|
|
17180
|
-
}
|
|
17181
|
-
|
|
17182
|
-
|
|
17183
|
-
|
|
17491
|
+
}
|
|
17492
|
+
},
|
|
17493
|
+
"oneOf": [
|
|
17494
|
+
{
|
|
17184
17495
|
"properties": {
|
|
17185
17496
|
"yesNo": {
|
|
17186
|
-
"type": "string",
|
|
17187
|
-
"title": "",
|
|
17188
17497
|
"enum": [
|
|
17189
|
-
"Yes",
|
|
17190
17498
|
"No"
|
|
17191
17499
|
]
|
|
17192
17500
|
}
|
|
17193
|
-
}
|
|
17194
|
-
|
|
17195
|
-
|
|
17196
|
-
|
|
17197
|
-
|
|
17198
|
-
|
|
17199
|
-
|
|
17200
|
-
|
|
17201
|
-
}
|
|
17202
|
-
}
|
|
17501
|
+
}
|
|
17502
|
+
},
|
|
17503
|
+
{
|
|
17504
|
+
"properties": {
|
|
17505
|
+
"yesNo": {
|
|
17506
|
+
"enum": [
|
|
17507
|
+
"Yes"
|
|
17508
|
+
]
|
|
17203
17509
|
},
|
|
17204
|
-
{
|
|
17205
|
-
"
|
|
17206
|
-
|
|
17207
|
-
|
|
17208
|
-
"Yes"
|
|
17209
|
-
]
|
|
17210
|
-
},
|
|
17211
|
-
"details": {
|
|
17212
|
-
"title": "Provide details",
|
|
17213
|
-
"type": "string",
|
|
17214
|
-
"minLength": 1
|
|
17215
|
-
}
|
|
17216
|
-
}
|
|
17510
|
+
"details": {
|
|
17511
|
+
"title": "Provide details",
|
|
17512
|
+
"type": "string",
|
|
17513
|
+
"minLength": 1
|
|
17217
17514
|
}
|
|
17218
|
-
|
|
17515
|
+
}
|
|
17219
17516
|
}
|
|
17220
|
-
|
|
17517
|
+
]
|
|
17518
|
+
}
|
|
17519
|
+
}
|
|
17520
|
+
},
|
|
17521
|
+
"isInsured": {
|
|
17522
|
+
"title": "Do you currently insure the property?",
|
|
17523
|
+
"type": "string",
|
|
17524
|
+
"enum": [
|
|
17525
|
+
"Yes",
|
|
17526
|
+
"No"
|
|
17527
|
+
]
|
|
17528
|
+
}
|
|
17529
|
+
},
|
|
17530
|
+
"oneOf": [
|
|
17531
|
+
{
|
|
17532
|
+
"properties": {
|
|
17533
|
+
"isInsured": {
|
|
17534
|
+
"enum": [
|
|
17535
|
+
"No"
|
|
17536
|
+
]
|
|
17537
|
+
},
|
|
17538
|
+
"details": {
|
|
17539
|
+
"title": "Why not?",
|
|
17540
|
+
"type": "string",
|
|
17541
|
+
"minLength": 1
|
|
17542
|
+
},
|
|
17543
|
+
"landlordInsuresIfFlat": {
|
|
17544
|
+
"title": "If the property is a flat, does the landlord insure the building?",
|
|
17545
|
+
"type": "string",
|
|
17546
|
+
"enum": [
|
|
17547
|
+
"Yes",
|
|
17548
|
+
"No",
|
|
17549
|
+
"Not applicable"
|
|
17550
|
+
]
|
|
17551
|
+
}
|
|
17552
|
+
}
|
|
17553
|
+
},
|
|
17554
|
+
{
|
|
17555
|
+
"properties": {
|
|
17556
|
+
"isInsured": {
|
|
17557
|
+
"enum": [
|
|
17558
|
+
"Yes"
|
|
17559
|
+
]
|
|
17221
17560
|
},
|
|
17222
17561
|
"insuranceClaims": {
|
|
17223
17562
|
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
@@ -25677,29 +26016,62 @@
|
|
|
25677
26016
|
}
|
|
25678
26017
|
},
|
|
25679
26018
|
"propertyAddress": {
|
|
25680
|
-
"
|
|
25681
|
-
|
|
25682
|
-
|
|
25683
|
-
"
|
|
25684
|
-
|
|
25685
|
-
"
|
|
25686
|
-
"
|
|
26019
|
+
"oneOf": [
|
|
26020
|
+
{
|
|
26021
|
+
"type": "array",
|
|
26022
|
+
"items": {
|
|
26023
|
+
"type": "object",
|
|
26024
|
+
"properties": {
|
|
26025
|
+
"postcodeZone": {
|
|
26026
|
+
"type": "object",
|
|
26027
|
+
"properties": {
|
|
26028
|
+
"postcode": {
|
|
26029
|
+
"type": "string"
|
|
26030
|
+
}
|
|
26031
|
+
}
|
|
26032
|
+
},
|
|
26033
|
+
"addressLine": {
|
|
26034
|
+
"type": "object",
|
|
26035
|
+
"properties": {
|
|
26036
|
+
"line": {
|
|
26037
|
+
"type": "array",
|
|
26038
|
+
"items": {
|
|
26039
|
+
"type": "string"
|
|
26040
|
+
},
|
|
26041
|
+
"minItems": 0
|
|
26042
|
+
}
|
|
26043
|
+
}
|
|
26044
|
+
}
|
|
25687
26045
|
}
|
|
25688
|
-
}
|
|
26046
|
+
},
|
|
26047
|
+
"minItems": 0
|
|
25689
26048
|
},
|
|
25690
|
-
|
|
26049
|
+
{
|
|
25691
26050
|
"type": "object",
|
|
25692
26051
|
"properties": {
|
|
25693
|
-
"
|
|
25694
|
-
"type": "
|
|
25695
|
-
"
|
|
25696
|
-
"
|
|
25697
|
-
|
|
25698
|
-
|
|
26052
|
+
"postcodeZone": {
|
|
26053
|
+
"type": "object",
|
|
26054
|
+
"properties": {
|
|
26055
|
+
"postcode": {
|
|
26056
|
+
"type": "string"
|
|
26057
|
+
}
|
|
26058
|
+
}
|
|
26059
|
+
},
|
|
26060
|
+
"addressLine": {
|
|
26061
|
+
"type": "object",
|
|
26062
|
+
"properties": {
|
|
26063
|
+
"line": {
|
|
26064
|
+
"type": "array",
|
|
26065
|
+
"items": {
|
|
26066
|
+
"type": "string"
|
|
26067
|
+
},
|
|
26068
|
+
"minItems": 0
|
|
26069
|
+
}
|
|
26070
|
+
}
|
|
25699
26071
|
}
|
|
25700
26072
|
}
|
|
25701
26073
|
}
|
|
25702
|
-
|
|
26074
|
+
]
|
|
25703
26075
|
},
|
|
25704
26076
|
"title": {
|
|
25705
26077
|
"type": "object",
|
|
@@ -33164,6 +33536,39 @@
|
|
|
33164
33536
|
}
|
|
33165
33537
|
}
|
|
33166
33538
|
}
|
|
33539
|
+
},
|
|
33540
|
+
"additionalDocuments": {
|
|
33541
|
+
"title": "Additional documents referred to in title register",
|
|
33542
|
+
"type": "array",
|
|
33543
|
+
"items": {
|
|
33544
|
+
"type": "object",
|
|
33545
|
+
"properties": {
|
|
33546
|
+
"documentType": {
|
|
33547
|
+
"title": "Human-readable document type",
|
|
33548
|
+
"type": "string",
|
|
33549
|
+
"minLength": 1
|
|
33550
|
+
},
|
|
33551
|
+
"documentTypeCode": {
|
|
33552
|
+
"title": "HMLR document type code",
|
|
33553
|
+
"type": "string",
|
|
33554
|
+
"minLength": 1
|
|
33555
|
+
},
|
|
33556
|
+
"documentDate": {
|
|
33557
|
+
"title": "Date of original document",
|
|
33558
|
+
"type": "string",
|
|
33559
|
+
"fornat": "date"
|
|
33560
|
+
},
|
|
33561
|
+
"retrievedOn": {
|
|
33562
|
+
"title": "Datetime retrieved from HMLR",
|
|
33563
|
+
"type": "string",
|
|
33564
|
+
"fornat": "date-time"
|
|
33565
|
+
},
|
|
33566
|
+
"filedUnder": {
|
|
33567
|
+
"title": "Related title number",
|
|
33568
|
+
"type": "string"
|
|
33569
|
+
}
|
|
33570
|
+
}
|
|
33571
|
+
}
|
|
33167
33572
|
}
|
|
33168
33573
|
}
|
|
33169
33574
|
}
|