@pdtf/schemas 2.1.0 → 2.2.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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/examples/v2/exampleTransaction.json +18 -93
- package/src/schemas/v1/material-facts.json +22 -0
- package/src/schemas/v1/searches/local-searches-required.json +2 -2
- package/src/schemas/v1/searches.json +2 -2
- package/src/schemas/v2/combined.json +699 -115
- package/src/schemas/v2/overlays/baspi.json +1 -1
- package/src/schemas/v2/overlays/con29R.json +2 -2
- package/src/schemas/v2/overlays/lpe1.json +24 -9
- package/src/schemas/v2/overlays/piq.json +952 -89
- package/src/schemas/v2/overlays/ta6.json +1 -1
- package/src/schemas/v2/pdtf-transaction.json +639 -113
- package/src/schemas/v2/skeleton.json +98 -7
- package/src/utils/hmlrLLC1.json +38 -119
- package/src/tests/v1/pdtfVerifiedClaims.test.js +0 -75
- package/src/tests/v1/transactionSchema.test.js +0 -227
- package/src/tests/v1/verifiedClaimsValidator.test.js +0 -96
|
@@ -193,6 +193,56 @@
|
|
|
193
193
|
"type": "number",
|
|
194
194
|
"minimum": -180,
|
|
195
195
|
"maximum": 180
|
|
196
|
+
},
|
|
197
|
+
"bng": {
|
|
198
|
+
"title": "British National Grid coordinates",
|
|
199
|
+
"type": "object",
|
|
200
|
+
"required": [
|
|
201
|
+
"easting",
|
|
202
|
+
"northing"
|
|
203
|
+
],
|
|
204
|
+
"properties": {
|
|
205
|
+
"easting": {
|
|
206
|
+
"title": "BNG easting",
|
|
207
|
+
"type": "number"
|
|
208
|
+
},
|
|
209
|
+
"northing": {
|
|
210
|
+
"title": "BNG northing",
|
|
211
|
+
"type": "number"
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"googleStreetViewPOV": {
|
|
216
|
+
"title": "Street View to render street nearby property in Google Street View",
|
|
217
|
+
"type": "object",
|
|
218
|
+
"properties": {
|
|
219
|
+
"heading": {
|
|
220
|
+
"title": "The heading for the Google Street View camera",
|
|
221
|
+
"type": "number",
|
|
222
|
+
"minimum": -360,
|
|
223
|
+
"maximum": 360
|
|
224
|
+
},
|
|
225
|
+
"pitch": {
|
|
226
|
+
"title": "The pitch for the Google Street View camera",
|
|
227
|
+
"type": "number"
|
|
228
|
+
},
|
|
229
|
+
"zoom": {
|
|
230
|
+
"title": "The zoom level for the Google Street View camera",
|
|
231
|
+
"type": "number"
|
|
232
|
+
},
|
|
233
|
+
"lat": {
|
|
234
|
+
"title": "The latitude for the Google Street View camera",
|
|
235
|
+
"type": "number",
|
|
236
|
+
"minimum": -90,
|
|
237
|
+
"maximum": 90
|
|
238
|
+
},
|
|
239
|
+
"lng": {
|
|
240
|
+
"title": "The longitude for the Google Street View camera",
|
|
241
|
+
"type": "number",
|
|
242
|
+
"minimum": -180,
|
|
243
|
+
"maximum": 180
|
|
244
|
+
}
|
|
245
|
+
}
|
|
196
246
|
}
|
|
197
247
|
}
|
|
198
248
|
},
|
|
@@ -238,6 +288,17 @@
|
|
|
238
288
|
"Offers in region of",
|
|
239
289
|
"Sale by tender"
|
|
240
290
|
]
|
|
291
|
+
},
|
|
292
|
+
"disposal": {
|
|
293
|
+
"title": "Disposal",
|
|
294
|
+
"type": "string",
|
|
295
|
+
"enum": [
|
|
296
|
+
"Auction",
|
|
297
|
+
"Formal tender",
|
|
298
|
+
"Informal tender",
|
|
299
|
+
"Modern Method of Auction",
|
|
300
|
+
"Private treaty"
|
|
301
|
+
]
|
|
241
302
|
}
|
|
242
303
|
}
|
|
243
304
|
},
|
|
@@ -245,6 +306,17 @@
|
|
|
245
306
|
"title": "Summary description",
|
|
246
307
|
"type": "string"
|
|
247
308
|
},
|
|
309
|
+
"marketingTenure": {
|
|
310
|
+
"title": "Type of tenure being marketed",
|
|
311
|
+
"type": "string",
|
|
312
|
+
"enum": [
|
|
313
|
+
"Commonhold",
|
|
314
|
+
"Freehold",
|
|
315
|
+
"Leasehold",
|
|
316
|
+
"Share of Freehold",
|
|
317
|
+
"Shared Ownership"
|
|
318
|
+
]
|
|
319
|
+
},
|
|
248
320
|
"media": {
|
|
249
321
|
"title": "Media",
|
|
250
322
|
"type": "array",
|
|
@@ -276,6 +348,419 @@
|
|
|
276
348
|
}
|
|
277
349
|
}
|
|
278
350
|
},
|
|
351
|
+
"buildInformation": {
|
|
352
|
+
"title": "Information related to property build",
|
|
353
|
+
"type": "object",
|
|
354
|
+
"properties": {
|
|
355
|
+
"internalArea": {
|
|
356
|
+
"title": "Total internal floor area",
|
|
357
|
+
"type": "object",
|
|
358
|
+
"properties": {
|
|
359
|
+
"area": {
|
|
360
|
+
"title": "Internal area value",
|
|
361
|
+
"type": "number",
|
|
362
|
+
"minimum": 0
|
|
363
|
+
},
|
|
364
|
+
"units": {
|
|
365
|
+
"title": "Internal area units",
|
|
366
|
+
"type": "string",
|
|
367
|
+
"enum": [
|
|
368
|
+
"square metres",
|
|
369
|
+
"square feet"
|
|
370
|
+
]
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"yearOfBuild": {
|
|
375
|
+
"title": "Year the property was built",
|
|
376
|
+
"type": "integer"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"residentialPropertyFeatures": {
|
|
381
|
+
"title": "Residential property features",
|
|
382
|
+
"type": "object",
|
|
383
|
+
"properties": {
|
|
384
|
+
"bedrooms": {
|
|
385
|
+
"title": "Number of bedrooms",
|
|
386
|
+
"type": "integer"
|
|
387
|
+
},
|
|
388
|
+
"bathrooms": {
|
|
389
|
+
"title": "Number of bathrooms",
|
|
390
|
+
"type": "integer"
|
|
391
|
+
},
|
|
392
|
+
"receptions": {
|
|
393
|
+
"title": "Number of reception rooms",
|
|
394
|
+
"type": "integer"
|
|
395
|
+
},
|
|
396
|
+
"kitchens": {
|
|
397
|
+
"title": "Number of kitchens",
|
|
398
|
+
"type": "integer"
|
|
399
|
+
},
|
|
400
|
+
"diningAreas": {
|
|
401
|
+
"title": "Number of dining areas",
|
|
402
|
+
"type": "integer"
|
|
403
|
+
},
|
|
404
|
+
"outsideAreas": {
|
|
405
|
+
"title": "Outside areas of the property",
|
|
406
|
+
"type": "array",
|
|
407
|
+
"items": {
|
|
408
|
+
"type": "string"
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"nearbyFacilities": {
|
|
414
|
+
"title": "Information about nearby facilties like hospital, school etc",
|
|
415
|
+
"type": "object",
|
|
416
|
+
"properties": {
|
|
417
|
+
"schools": {
|
|
418
|
+
"title": "Schools",
|
|
419
|
+
"type": "array",
|
|
420
|
+
"items": {
|
|
421
|
+
"type": "object",
|
|
422
|
+
"properties": {
|
|
423
|
+
"name": {
|
|
424
|
+
"type": "string",
|
|
425
|
+
"title": "Name"
|
|
426
|
+
},
|
|
427
|
+
"contact": {
|
|
428
|
+
"type": "object",
|
|
429
|
+
"title": "Contact Details",
|
|
430
|
+
"properties": {
|
|
431
|
+
"address": {
|
|
432
|
+
"title": "Address",
|
|
433
|
+
"type": "object",
|
|
434
|
+
"properties": {
|
|
435
|
+
"line1": {
|
|
436
|
+
"title": "Address line 1",
|
|
437
|
+
"type": "string",
|
|
438
|
+
"minLength": 1
|
|
439
|
+
},
|
|
440
|
+
"line2": {
|
|
441
|
+
"title": "Address line 2",
|
|
442
|
+
"type": "string"
|
|
443
|
+
},
|
|
444
|
+
"line3": {
|
|
445
|
+
"title": "Address line 3",
|
|
446
|
+
"type": "string"
|
|
447
|
+
},
|
|
448
|
+
"town": {
|
|
449
|
+
"title": "Town",
|
|
450
|
+
"type": "string"
|
|
451
|
+
},
|
|
452
|
+
"postcode": {
|
|
453
|
+
"title": "Postcode",
|
|
454
|
+
"type": "string",
|
|
455
|
+
"minLength": 1
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"telephone": {
|
|
460
|
+
"title": "Telephone",
|
|
461
|
+
"type": "string",
|
|
462
|
+
"minLength": 1
|
|
463
|
+
},
|
|
464
|
+
"emailAddress": {
|
|
465
|
+
"title": "Email address",
|
|
466
|
+
"type": "string",
|
|
467
|
+
"format": "email"
|
|
468
|
+
},
|
|
469
|
+
"website": {
|
|
470
|
+
"title": "School website",
|
|
471
|
+
"type": "string",
|
|
472
|
+
"format": "uri"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"ofstedRating": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"title": "Ofsted Rating",
|
|
479
|
+
"enum": [
|
|
480
|
+
"Outstanding",
|
|
481
|
+
"Good",
|
|
482
|
+
"Requires Improvement",
|
|
483
|
+
"Inadequate",
|
|
484
|
+
"Other"
|
|
485
|
+
]
|
|
486
|
+
},
|
|
487
|
+
"pupils": {
|
|
488
|
+
"type": "integer",
|
|
489
|
+
"title": "Number of Pupils"
|
|
490
|
+
},
|
|
491
|
+
"distanceInMiles": {
|
|
492
|
+
"type": "number",
|
|
493
|
+
"title": "Distance in miles"
|
|
494
|
+
},
|
|
495
|
+
"ageRange": {
|
|
496
|
+
"type": "string",
|
|
497
|
+
"title": "Age Range of student in format minimumAge-maximimAge"
|
|
498
|
+
},
|
|
499
|
+
"religiousCharacter": {
|
|
500
|
+
"type": "string",
|
|
501
|
+
"title": "Religious character of school, if any"
|
|
502
|
+
},
|
|
503
|
+
"schoolType": {
|
|
504
|
+
"type": "object",
|
|
505
|
+
"title": "Type of School",
|
|
506
|
+
"properties": {
|
|
507
|
+
"nursery": {
|
|
508
|
+
"title": "Nursery",
|
|
509
|
+
"type": "object",
|
|
510
|
+
"yesNoNotKnown": {
|
|
511
|
+
"type": "string",
|
|
512
|
+
"title": "",
|
|
513
|
+
"enum": [
|
|
514
|
+
"Yes",
|
|
515
|
+
"No",
|
|
516
|
+
"Not Known"
|
|
517
|
+
]
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"primary": {
|
|
521
|
+
"title": "Primary",
|
|
522
|
+
"type": "object",
|
|
523
|
+
"yesNoNotKnown": {
|
|
524
|
+
"type": "string",
|
|
525
|
+
"title": "",
|
|
526
|
+
"enum": [
|
|
527
|
+
"Yes",
|
|
528
|
+
"No",
|
|
529
|
+
"Not Known"
|
|
530
|
+
]
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"secondary": {
|
|
534
|
+
"title": "Secondary",
|
|
535
|
+
"type": "object",
|
|
536
|
+
"yesNoNotKnown": {
|
|
537
|
+
"type": "string",
|
|
538
|
+
"title": "",
|
|
539
|
+
"enum": [
|
|
540
|
+
"Yes",
|
|
541
|
+
"No",
|
|
542
|
+
"Not Known"
|
|
543
|
+
]
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"college": {
|
|
547
|
+
"title": "College",
|
|
548
|
+
"type": "object",
|
|
549
|
+
"yesNoNotKnown": {
|
|
550
|
+
"type": "string",
|
|
551
|
+
"title": "",
|
|
552
|
+
"enum": [
|
|
553
|
+
"Yes",
|
|
554
|
+
"No",
|
|
555
|
+
"Not Known"
|
|
556
|
+
]
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"private": {
|
|
560
|
+
"title": "Private",
|
|
561
|
+
"type": "object",
|
|
562
|
+
"yesNoNotKnown": {
|
|
563
|
+
"type": "string",
|
|
564
|
+
"title": "",
|
|
565
|
+
"enum": [
|
|
566
|
+
"Yes",
|
|
567
|
+
"No",
|
|
568
|
+
"Not Known"
|
|
569
|
+
]
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"oneOf": [
|
|
576
|
+
{
|
|
577
|
+
"properties": {
|
|
578
|
+
"ofstedRating": {
|
|
579
|
+
"enum": [
|
|
580
|
+
"Outstanding",
|
|
581
|
+
"Good",
|
|
582
|
+
"Requires Improvement",
|
|
583
|
+
"Inadequate"
|
|
584
|
+
]
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"properties": {
|
|
590
|
+
"ofstedRating": {
|
|
591
|
+
"enum": [
|
|
592
|
+
"Other"
|
|
593
|
+
]
|
|
594
|
+
},
|
|
595
|
+
"otherRating": {
|
|
596
|
+
"title": "Please describe the other rating",
|
|
597
|
+
"type": "string"
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
]
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"transport": {
|
|
605
|
+
"title": "Transportation facilities",
|
|
606
|
+
"type": "array",
|
|
607
|
+
"items": {
|
|
608
|
+
"type": "object",
|
|
609
|
+
"properties": {
|
|
610
|
+
"name": {
|
|
611
|
+
"title": "Name",
|
|
612
|
+
"type": "string"
|
|
613
|
+
},
|
|
614
|
+
"transportType": {
|
|
615
|
+
"title": "Type of transport service",
|
|
616
|
+
"type": "string",
|
|
617
|
+
"enum": [
|
|
618
|
+
"Local connection",
|
|
619
|
+
"Ferry terminal",
|
|
620
|
+
"Bus stop/station",
|
|
621
|
+
"National rail station",
|
|
622
|
+
"Trunk road/motorway",
|
|
623
|
+
"Airport",
|
|
624
|
+
"Helipad",
|
|
625
|
+
"Other"
|
|
626
|
+
]
|
|
627
|
+
},
|
|
628
|
+
"latitude": {
|
|
629
|
+
"title": "Latitude",
|
|
630
|
+
"type": "number",
|
|
631
|
+
"minimum": -90,
|
|
632
|
+
"maximum": 90
|
|
633
|
+
},
|
|
634
|
+
"longitude": {
|
|
635
|
+
"title": "Longitude",
|
|
636
|
+
"type": "number",
|
|
637
|
+
"minimum": -180,
|
|
638
|
+
"maximum": 180
|
|
639
|
+
},
|
|
640
|
+
"distanceInMiles": {
|
|
641
|
+
"title": "Distance in miles",
|
|
642
|
+
"type": "number"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"healthCare": {
|
|
648
|
+
"title": "Nearby healthcare services",
|
|
649
|
+
"type": "array",
|
|
650
|
+
"items": {
|
|
651
|
+
"type": "object",
|
|
652
|
+
"title": "Healthcare service",
|
|
653
|
+
"properties": {
|
|
654
|
+
"name": {
|
|
655
|
+
"title": "Name",
|
|
656
|
+
"type": "string"
|
|
657
|
+
},
|
|
658
|
+
"typeOfHealthCare": {
|
|
659
|
+
"type": "string",
|
|
660
|
+
"title": "Type of healthcare facility: hospital, dental surgery etc"
|
|
661
|
+
},
|
|
662
|
+
"contact": {
|
|
663
|
+
"type": "object",
|
|
664
|
+
"title": "Contact details",
|
|
665
|
+
"properties": {
|
|
666
|
+
"address": {
|
|
667
|
+
"title": "Address",
|
|
668
|
+
"type": "object",
|
|
669
|
+
"properties": {
|
|
670
|
+
"line1": {
|
|
671
|
+
"title": "Address line 1",
|
|
672
|
+
"type": "string",
|
|
673
|
+
"minLength": 1
|
|
674
|
+
},
|
|
675
|
+
"line2": {
|
|
676
|
+
"title": "Address line 2",
|
|
677
|
+
"type": "string"
|
|
678
|
+
},
|
|
679
|
+
"line3": {
|
|
680
|
+
"title": "Address line 3",
|
|
681
|
+
"type": "string"
|
|
682
|
+
},
|
|
683
|
+
"town": {
|
|
684
|
+
"title": "Town",
|
|
685
|
+
"type": "string"
|
|
686
|
+
},
|
|
687
|
+
"postcode": {
|
|
688
|
+
"title": "Postcode",
|
|
689
|
+
"type": "string",
|
|
690
|
+
"minLength": 1
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
},
|
|
694
|
+
"telephone": {
|
|
695
|
+
"title": "Telephone",
|
|
696
|
+
"type": "string",
|
|
697
|
+
"minLength": 1
|
|
698
|
+
},
|
|
699
|
+
"emailAddress": {
|
|
700
|
+
"title": "Email address",
|
|
701
|
+
"type": "string",
|
|
702
|
+
"format": "email"
|
|
703
|
+
},
|
|
704
|
+
"website": {
|
|
705
|
+
"title": "Website Url",
|
|
706
|
+
"type": "string",
|
|
707
|
+
"format": "uri"
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"containsAccidentAndEmergencyFacility": {
|
|
712
|
+
"type": "string",
|
|
713
|
+
"title": "",
|
|
714
|
+
"enum": [
|
|
715
|
+
"Yes",
|
|
716
|
+
"No",
|
|
717
|
+
"Not Known"
|
|
718
|
+
]
|
|
719
|
+
},
|
|
720
|
+
"distanceInMiles": {
|
|
721
|
+
"title": "Approximate Distance in miles",
|
|
722
|
+
"type": "number"
|
|
723
|
+
},
|
|
724
|
+
"specialties": {
|
|
725
|
+
"type": "array",
|
|
726
|
+
"items": {
|
|
727
|
+
"type": "string"
|
|
728
|
+
},
|
|
729
|
+
"title": "Specialties"
|
|
730
|
+
},
|
|
731
|
+
"openingHours": {
|
|
732
|
+
"type": "array",
|
|
733
|
+
"items": {
|
|
734
|
+
"type": "object",
|
|
735
|
+
"properties": {
|
|
736
|
+
"day": {
|
|
737
|
+
"type": "string",
|
|
738
|
+
"enum": [
|
|
739
|
+
"Sun",
|
|
740
|
+
"Mon",
|
|
741
|
+
"Tue",
|
|
742
|
+
"Wed",
|
|
743
|
+
"Thu",
|
|
744
|
+
"Fri",
|
|
745
|
+
"Sat"
|
|
746
|
+
]
|
|
747
|
+
},
|
|
748
|
+
"hours": {
|
|
749
|
+
"type": "string"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"required": [
|
|
753
|
+
"day",
|
|
754
|
+
"hours"
|
|
755
|
+
]
|
|
756
|
+
},
|
|
757
|
+
"title": "Opening hours"
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
},
|
|
279
764
|
"connectivity": {
|
|
280
765
|
"title": "Connectivity",
|
|
281
766
|
"type": "object",
|
|
@@ -3709,7 +4194,7 @@
|
|
|
3709
4194
|
]
|
|
3710
4195
|
},
|
|
3711
4196
|
"lesseeInCharge": {
|
|
3712
|
-
"title": "
|
|
4197
|
+
"title": "If the Lessees, please provide contact details of the Lessee in charge",
|
|
3713
4198
|
"type": "object",
|
|
3714
4199
|
"properties": {
|
|
3715
4200
|
"nameOrOrganisation": {
|
|
@@ -4640,7 +5125,7 @@
|
|
|
4640
5125
|
]
|
|
4641
5126
|
},
|
|
4642
5127
|
"details": {
|
|
4643
|
-
"title": "
|
|
5128
|
+
"title": "Confirm the amount collected from Lessees of the Property, currently held in the Reserve Fund:",
|
|
4644
5129
|
"type": "string",
|
|
4645
5130
|
"minLength": 1
|
|
4646
5131
|
},
|
|
@@ -5239,7 +5724,7 @@
|
|
|
5239
5724
|
]
|
|
5240
5725
|
},
|
|
5241
5726
|
"riskAssessments": {
|
|
5242
|
-
"title": "
|
|
5727
|
+
"title": "What risk assessments have been completed?",
|
|
5243
5728
|
"type": "object",
|
|
5244
5729
|
"properties": {
|
|
5245
5730
|
"assessmentsCarriedOut": {
|
|
@@ -5569,7 +6054,7 @@
|
|
|
5569
6054
|
},
|
|
5570
6055
|
"unresolvedDisputes": {
|
|
5571
6056
|
"type": "object",
|
|
5572
|
-
"title": "Are there any documented unresolved disputes with the
|
|
6057
|
+
"title": "Are there any documented unresolved disputes with the Lessees of any of the properties in the Managed Area?",
|
|
5573
6058
|
"properties": {
|
|
5574
6059
|
"yesNo": {
|
|
5575
6060
|
"type": "string",
|
|
@@ -17508,7 +17993,7 @@
|
|
|
17508
17993
|
]
|
|
17509
17994
|
},
|
|
17510
17995
|
"details": {
|
|
17511
|
-
"title": "Please
|
|
17996
|
+
"title": "Please state",
|
|
17512
17997
|
"type": "string",
|
|
17513
17998
|
"minLength": 1
|
|
17514
17999
|
}
|
|
@@ -27816,31 +28301,9 @@
|
|
|
27816
28301
|
"type": "string",
|
|
27817
28302
|
"enum": [
|
|
27818
28303
|
"Local Land Charges",
|
|
27819
|
-
"
|
|
27820
|
-
"
|
|
27821
|
-
"
|
|
27822
|
-
"Flood",
|
|
27823
|
-
"Contaminated Land",
|
|
27824
|
-
"Coal",
|
|
27825
|
-
"Bath Stone",
|
|
27826
|
-
"Metalliferous (Tin)",
|
|
27827
|
-
"Kaolin & Ball Clay",
|
|
27828
|
-
"Limestone",
|
|
27829
|
-
"Brine",
|
|
27830
|
-
"HS2",
|
|
27831
|
-
"Crossrail",
|
|
27832
|
-
"Energy Exploration",
|
|
27833
|
-
"Wind Farms",
|
|
27834
|
-
"Planning",
|
|
27835
|
-
"Utilities",
|
|
27836
|
-
"Renewable Power Plants",
|
|
27837
|
-
"Solar Farms",
|
|
27838
|
-
"London Underground",
|
|
27839
|
-
"Ground Stability",
|
|
27840
|
-
"Non Coal Mining",
|
|
27841
|
-
"Ground Movement",
|
|
27842
|
-
"Mineral",
|
|
27843
|
-
"Radon"
|
|
28304
|
+
"Local Authority Search",
|
|
28305
|
+
"Drainage and Water Search",
|
|
28306
|
+
"Environmental Risks"
|
|
27844
28307
|
]
|
|
27845
28308
|
}
|
|
27846
28309
|
}
|
|
@@ -27893,31 +28356,9 @@
|
|
|
27893
28356
|
"type": "string",
|
|
27894
28357
|
"enum": [
|
|
27895
28358
|
"Local Land Charges",
|
|
27896
|
-
"
|
|
27897
|
-
"
|
|
27898
|
-
"
|
|
27899
|
-
"Flood",
|
|
27900
|
-
"Contaminated Land",
|
|
27901
|
-
"Coal",
|
|
27902
|
-
"Bath Stone",
|
|
27903
|
-
"Metalliferous (Tin)",
|
|
27904
|
-
"Kaolin & Ball Clay",
|
|
27905
|
-
"Limestone",
|
|
27906
|
-
"Brine",
|
|
27907
|
-
"HS2",
|
|
27908
|
-
"Crossrail",
|
|
27909
|
-
"Energy Exploration",
|
|
27910
|
-
"Wind Farms",
|
|
27911
|
-
"Planning",
|
|
27912
|
-
"Utilities",
|
|
27913
|
-
"Renewable Power Plants",
|
|
27914
|
-
"Solar Farms",
|
|
27915
|
-
"London Underground",
|
|
27916
|
-
"Ground Stability",
|
|
27917
|
-
"Non Coal Mining",
|
|
27918
|
-
"Ground Movement",
|
|
27919
|
-
"Mineral",
|
|
27920
|
-
"Radon"
|
|
28359
|
+
"Local Authority Search",
|
|
28360
|
+
"Drainage and Water Search",
|
|
28361
|
+
"Environmental Risks"
|
|
27921
28362
|
]
|
|
27922
28363
|
}
|
|
27923
28364
|
},
|
|
@@ -27994,7 +28435,7 @@
|
|
|
27994
28435
|
"properties": {
|
|
27995
28436
|
"contentType": {
|
|
27996
28437
|
"enum": [
|
|
27997
|
-
"
|
|
28438
|
+
"Local Authority Search"
|
|
27998
28439
|
]
|
|
27999
28440
|
},
|
|
28000
28441
|
"requiredLocalSearches": {
|
|
@@ -30159,7 +30600,7 @@
|
|
|
30159
30600
|
]
|
|
30160
30601
|
},
|
|
30161
30602
|
"housing": {
|
|
30162
|
-
"title": "
|
|
30603
|
+
"title": "housing;",
|
|
30163
30604
|
"type": "object",
|
|
30164
30605
|
"properties": {
|
|
30165
30606
|
"yesNo": {
|
|
@@ -30440,7 +30881,7 @@
|
|
|
30440
30881
|
]
|
|
30441
30882
|
},
|
|
30442
30883
|
"listedBuildingEnforcementNotice": {
|
|
30443
|
-
"title": "
|
|
30884
|
+
"title": "a listed building enforcement notice;",
|
|
30444
30885
|
"type": "object",
|
|
30445
30886
|
"properties": {
|
|
30446
30887
|
"yesNo": {
|
|
@@ -32110,7 +32551,7 @@
|
|
|
32110
32551
|
"properties": {
|
|
32111
32552
|
"contentType": {
|
|
32112
32553
|
"enum": [
|
|
32113
|
-
"Drainage and Water
|
|
32554
|
+
"Drainage and Water Search"
|
|
32114
32555
|
]
|
|
32115
32556
|
},
|
|
32116
32557
|
"drainageAndWater": {
|
|
@@ -32747,62 +33188,114 @@
|
|
|
32747
33188
|
"properties": {
|
|
32748
33189
|
"contentType": {
|
|
32749
33190
|
"enum": [
|
|
32750
|
-
"
|
|
32751
|
-
"Contaminated Land",
|
|
32752
|
-
"Coal",
|
|
32753
|
-
"Bath Stone",
|
|
32754
|
-
"Metalliferous (Tin)",
|
|
32755
|
-
"Kaolin & Ball Clay",
|
|
32756
|
-
"Limestone",
|
|
32757
|
-
"Brine",
|
|
32758
|
-
"HS2",
|
|
32759
|
-
"Crossrail",
|
|
32760
|
-
"Energy Exploration",
|
|
32761
|
-
"Wind Farms",
|
|
32762
|
-
"Renewable Power Plants",
|
|
32763
|
-
"Solar Farms",
|
|
32764
|
-
"London Underground",
|
|
32765
|
-
"Ground Stability",
|
|
32766
|
-
"Non Coal Mining",
|
|
32767
|
-
"Ground Movement",
|
|
32768
|
-
"Mineral",
|
|
32769
|
-
"Radon",
|
|
32770
|
-
"Other"
|
|
32771
|
-
]
|
|
32772
|
-
},
|
|
32773
|
-
"recommendedActionIndicator": {
|
|
32774
|
-
"title": "Recommended action indicator",
|
|
32775
|
-
"type": "string",
|
|
32776
|
-
"enum": [
|
|
32777
|
-
"Yes",
|
|
32778
|
-
"No"
|
|
33191
|
+
"Environmental Risks"
|
|
32779
33192
|
]
|
|
32780
33193
|
},
|
|
32781
|
-
"
|
|
32782
|
-
"
|
|
32783
|
-
"
|
|
32784
|
-
|
|
32785
|
-
|
|
32786
|
-
|
|
32787
|
-
|
|
32788
|
-
|
|
32789
|
-
|
|
32790
|
-
|
|
32791
|
-
|
|
32792
|
-
|
|
32793
|
-
|
|
32794
|
-
|
|
32795
|
-
|
|
32796
|
-
|
|
32797
|
-
|
|
32798
|
-
|
|
32799
|
-
|
|
32800
|
-
|
|
32801
|
-
|
|
32802
|
-
|
|
32803
|
-
|
|
32804
|
-
|
|
32805
|
-
|
|
33194
|
+
"riskResults": {
|
|
33195
|
+
"type": "array",
|
|
33196
|
+
"items": {
|
|
33197
|
+
"riskResult": {
|
|
33198
|
+
"type": "object",
|
|
33199
|
+
"properties": {
|
|
33200
|
+
"riskCategory": {
|
|
33201
|
+
"type": "string",
|
|
33202
|
+
"title": "Risk category",
|
|
33203
|
+
"enum": [
|
|
33204
|
+
"Flood Risk",
|
|
33205
|
+
"Contaminated Land",
|
|
33206
|
+
"Ground Stability",
|
|
33207
|
+
"Radon",
|
|
33208
|
+
"Energy",
|
|
33209
|
+
"Transportation",
|
|
33210
|
+
"Planning",
|
|
33211
|
+
"Climate",
|
|
33212
|
+
"Mining"
|
|
33213
|
+
]
|
|
33214
|
+
},
|
|
33215
|
+
"recommendedActionIndicator": {
|
|
33216
|
+
"type": "string",
|
|
33217
|
+
"title": "Recommended action indicator",
|
|
33218
|
+
"enum": [
|
|
33219
|
+
"Yes",
|
|
33220
|
+
"No"
|
|
33221
|
+
]
|
|
33222
|
+
},
|
|
33223
|
+
"actionAlertRating": {
|
|
33224
|
+
"type": "string",
|
|
33225
|
+
"title": "Action alert rating (1 is Green, 5 is Red)",
|
|
33226
|
+
"enum": [
|
|
33227
|
+
"1",
|
|
33228
|
+
"2",
|
|
33229
|
+
"3",
|
|
33230
|
+
"4",
|
|
33231
|
+
"5"
|
|
33232
|
+
]
|
|
33233
|
+
},
|
|
33234
|
+
"summary": {
|
|
33235
|
+
"type": "string",
|
|
33236
|
+
"title": "Summary of risk",
|
|
33237
|
+
"minLength": 1
|
|
33238
|
+
},
|
|
33239
|
+
"recommendations": {
|
|
33240
|
+
"type": "string",
|
|
33241
|
+
"title": "Recommendations",
|
|
33242
|
+
"minLength": 1
|
|
33243
|
+
},
|
|
33244
|
+
"datasetAttribution": {
|
|
33245
|
+
"type": "string",
|
|
33246
|
+
"title": "Licensing, distribution and copyright information",
|
|
33247
|
+
"minLength": 1
|
|
33248
|
+
},
|
|
33249
|
+
"riskSubcategories": {
|
|
33250
|
+
"type": "array",
|
|
33251
|
+
"title": "Risk sub-categories",
|
|
33252
|
+
"items": {
|
|
33253
|
+
"type": "object",
|
|
33254
|
+
"properties": {
|
|
33255
|
+
"subCategory": {
|
|
33256
|
+
"type": "string",
|
|
33257
|
+
"title": "Risk sub-category name"
|
|
33258
|
+
},
|
|
33259
|
+
"recommendedActionIndicator": {
|
|
33260
|
+
"type": "string",
|
|
33261
|
+
"title": "Is action recommended?",
|
|
33262
|
+
"enum": [
|
|
33263
|
+
"Yes",
|
|
33264
|
+
"No"
|
|
33265
|
+
]
|
|
33266
|
+
},
|
|
33267
|
+
"actionAlertRating": {
|
|
33268
|
+
"type": "string",
|
|
33269
|
+
"title": "Action alert rating (1 is Green, 5 is Red)",
|
|
33270
|
+
"enum": [
|
|
33271
|
+
"1",
|
|
33272
|
+
"2",
|
|
33273
|
+
"3",
|
|
33274
|
+
"4",
|
|
33275
|
+
"5"
|
|
33276
|
+
]
|
|
33277
|
+
},
|
|
33278
|
+
"summary": {
|
|
33279
|
+
"type": "string",
|
|
33280
|
+
"title": "Summary of risk",
|
|
33281
|
+
"minLength": 1
|
|
33282
|
+
},
|
|
33283
|
+
"recommendations": {
|
|
33284
|
+
"type": "string",
|
|
33285
|
+
"title": "Recommendations",
|
|
33286
|
+
"minLength": 1
|
|
33287
|
+
},
|
|
33288
|
+
"datasetAttribution": {
|
|
33289
|
+
"type": "string",
|
|
33290
|
+
"title": "Licensing, distribution and copyright information",
|
|
33291
|
+
"minLength": 1
|
|
33292
|
+
}
|
|
33293
|
+
}
|
|
33294
|
+
}
|
|
33295
|
+
}
|
|
33296
|
+
}
|
|
33297
|
+
}
|
|
33298
|
+
}
|
|
32806
33299
|
}
|
|
32807
33300
|
}
|
|
32808
33301
|
}
|
|
@@ -32813,6 +33306,39 @@
|
|
|
32813
33306
|
}
|
|
32814
33307
|
]
|
|
32815
33308
|
}
|
|
33309
|
+
},
|
|
33310
|
+
"documents": {
|
|
33311
|
+
"title": "Documents",
|
|
33312
|
+
"description": "Documents associated with the transaction",
|
|
33313
|
+
"type": "array",
|
|
33314
|
+
"items": {
|
|
33315
|
+
"type": "object",
|
|
33316
|
+
"properties": {
|
|
33317
|
+
"displayName": {
|
|
33318
|
+
"title": "Human-readable name of document",
|
|
33319
|
+
"type": "string",
|
|
33320
|
+
"minLength": 1
|
|
33321
|
+
},
|
|
33322
|
+
"fileName": {
|
|
33323
|
+
"title": "File name of the document",
|
|
33324
|
+
"type": "string",
|
|
33325
|
+
"minLength": 1
|
|
33326
|
+
},
|
|
33327
|
+
"mimeType": {
|
|
33328
|
+
"title": "Document MIME type",
|
|
33329
|
+
"type": "string",
|
|
33330
|
+
"minLength": 1
|
|
33331
|
+
},
|
|
33332
|
+
"documentType": {
|
|
33333
|
+
"title": "Human-readable document category",
|
|
33334
|
+
"type": "string",
|
|
33335
|
+
"minLength": 1
|
|
33336
|
+
},
|
|
33337
|
+
"externalIds": {
|
|
33338
|
+
"type": "object"
|
|
33339
|
+
}
|
|
33340
|
+
}
|
|
33341
|
+
}
|
|
32816
33342
|
}
|
|
32817
33343
|
}
|
|
32818
33344
|
}
|