@pdtf/schemas 2.0.0 → 2.1.2-1
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/package.json +1 -1
- package/src/schemas/v2/combined.json +1159 -11
- package/src/schemas/v2/overlays/lpe1.json +1 -1
- package/src/schemas/v2/overlays/ta10.json +5995 -324
- package/src/schemas/v2/overlays/ta7.json +439 -27
- package/src/schemas/v2/pdtf-transaction.json +473 -3
- package/src/schemas/v2/skeleton.json +93 -1
- package/src/utils/extractOverlay.js +41 -6
|
@@ -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 streetview camera",
|
|
221
|
+
"type": "number",
|
|
222
|
+
"minimum": 0,
|
|
223
|
+
"maximum": 360
|
|
224
|
+
},
|
|
225
|
+
"pitch": {
|
|
226
|
+
"title": "The pitch for the google streetview camera",
|
|
227
|
+
"type": "number"
|
|
228
|
+
},
|
|
229
|
+
"zoom": {
|
|
230
|
+
"title": "The zoom level for the google streetview camera",
|
|
231
|
+
"type": "number"
|
|
232
|
+
},
|
|
233
|
+
"lat": {
|
|
234
|
+
"title": "The latitude for the google streetview camera",
|
|
235
|
+
"type": "number",
|
|
236
|
+
"minimum": -90,
|
|
237
|
+
"maximum": 90
|
|
238
|
+
},
|
|
239
|
+
"lng": {
|
|
240
|
+
"title": "The longitude for the google streetview camera",
|
|
241
|
+
"type": "number",
|
|
242
|
+
"minimum": -180,
|
|
243
|
+
"maximum": 180
|
|
244
|
+
}
|
|
245
|
+
}
|
|
196
246
|
}
|
|
197
247
|
}
|
|
198
248
|
},
|
|
@@ -276,6 +326,391 @@
|
|
|
276
326
|
}
|
|
277
327
|
}
|
|
278
328
|
},
|
|
329
|
+
"buildInformation": {
|
|
330
|
+
"title": "Information related to property build",
|
|
331
|
+
"type": "object",
|
|
332
|
+
"properties": {
|
|
333
|
+
"internalArea": {
|
|
334
|
+
"title": "Total internal floor area",
|
|
335
|
+
"type": "object",
|
|
336
|
+
"properties": {
|
|
337
|
+
"area": {
|
|
338
|
+
"title": "Internal area value",
|
|
339
|
+
"type": "number",
|
|
340
|
+
"minimum": 0
|
|
341
|
+
},
|
|
342
|
+
"units": {
|
|
343
|
+
"title": "Internal area units",
|
|
344
|
+
"type": "string",
|
|
345
|
+
"enum": [
|
|
346
|
+
"square metres",
|
|
347
|
+
"square feet"
|
|
348
|
+
]
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"yearOfBuild": {
|
|
353
|
+
"title": "Year the property was built",
|
|
354
|
+
"type": "integer"
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"residentialPropertyFeatures": {
|
|
359
|
+
"title": "Residential property features",
|
|
360
|
+
"type": "object",
|
|
361
|
+
"properties": {
|
|
362
|
+
"bedrooms": {
|
|
363
|
+
"title": "Number of bedrooms",
|
|
364
|
+
"type": "integer"
|
|
365
|
+
},
|
|
366
|
+
"bathrooms": {
|
|
367
|
+
"title": "Number of bathrooms",
|
|
368
|
+
"type": "integer"
|
|
369
|
+
},
|
|
370
|
+
"receptions": {
|
|
371
|
+
"title": "Number of reception rooms",
|
|
372
|
+
"type": "integer"
|
|
373
|
+
},
|
|
374
|
+
"kitchens": {
|
|
375
|
+
"title": "Number of kitchens",
|
|
376
|
+
"type": "integer"
|
|
377
|
+
},
|
|
378
|
+
"diningAreas": {
|
|
379
|
+
"title": "Number of dining areas",
|
|
380
|
+
"type": "integer"
|
|
381
|
+
},
|
|
382
|
+
"outsideAreas": {
|
|
383
|
+
"title": "Outside areas of the property",
|
|
384
|
+
"type": "array",
|
|
385
|
+
"items": {
|
|
386
|
+
"type": "string"
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"nearbyFacilities": {
|
|
392
|
+
"title": "Information about nearby facilties like hospital, school etc",
|
|
393
|
+
"type": "object",
|
|
394
|
+
"properties": {
|
|
395
|
+
"schools": {
|
|
396
|
+
"title": "Schools",
|
|
397
|
+
"type": "array",
|
|
398
|
+
"items": {
|
|
399
|
+
"type": "object",
|
|
400
|
+
"properties": {
|
|
401
|
+
"name": {
|
|
402
|
+
"type": "string",
|
|
403
|
+
"title": "Name"
|
|
404
|
+
},
|
|
405
|
+
"contact": {
|
|
406
|
+
"type": "object",
|
|
407
|
+
"title": "Contact Details",
|
|
408
|
+
"properties": {
|
|
409
|
+
"address": {
|
|
410
|
+
"title": "Address",
|
|
411
|
+
"type": "object",
|
|
412
|
+
"properties": {
|
|
413
|
+
"line1": {
|
|
414
|
+
"title": "Address line 1",
|
|
415
|
+
"type": "string",
|
|
416
|
+
"minLength": 1
|
|
417
|
+
},
|
|
418
|
+
"line2": {
|
|
419
|
+
"title": "Address line 2",
|
|
420
|
+
"type": "string"
|
|
421
|
+
},
|
|
422
|
+
"line3": {
|
|
423
|
+
"title": "Address line 3",
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
"town": {
|
|
427
|
+
"title": "Town",
|
|
428
|
+
"type": "string"
|
|
429
|
+
},
|
|
430
|
+
"postcode": {
|
|
431
|
+
"title": "Postcode",
|
|
432
|
+
"type": "string",
|
|
433
|
+
"minLength": 1
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"telephone": {
|
|
438
|
+
"title": "Telephone",
|
|
439
|
+
"type": "string",
|
|
440
|
+
"minLength": 1
|
|
441
|
+
},
|
|
442
|
+
"emailAddress": {
|
|
443
|
+
"title": "Email address",
|
|
444
|
+
"type": "string",
|
|
445
|
+
"format": "email"
|
|
446
|
+
},
|
|
447
|
+
"website": {
|
|
448
|
+
"title": "School website",
|
|
449
|
+
"type": "string",
|
|
450
|
+
"format": "uri"
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"ofstedRating": {
|
|
455
|
+
"type": "string",
|
|
456
|
+
"title": "Ofsted Rating",
|
|
457
|
+
"enum": [
|
|
458
|
+
"Outstanding",
|
|
459
|
+
"Good",
|
|
460
|
+
"Requires Improvement",
|
|
461
|
+
"Inadequate"
|
|
462
|
+
]
|
|
463
|
+
},
|
|
464
|
+
"pupils": {
|
|
465
|
+
"type": "integer",
|
|
466
|
+
"title": "Number of Pupils"
|
|
467
|
+
},
|
|
468
|
+
"distanceInMiles": {
|
|
469
|
+
"type": "number",
|
|
470
|
+
"title": "Distance in miles"
|
|
471
|
+
},
|
|
472
|
+
"ageRange": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"title": "Age Range of student in format minimumAge-maximimAge"
|
|
475
|
+
},
|
|
476
|
+
"religiousCharacter": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"title": "Religious character of school, if any"
|
|
479
|
+
},
|
|
480
|
+
"schoolType": {
|
|
481
|
+
"type": "object",
|
|
482
|
+
"title": "Type of School",
|
|
483
|
+
"properties": {
|
|
484
|
+
"nursery": {
|
|
485
|
+
"title": "Nursery",
|
|
486
|
+
"type": "object",
|
|
487
|
+
"yesNoNotKnown": {
|
|
488
|
+
"type": "string",
|
|
489
|
+
"title": "",
|
|
490
|
+
"enum": [
|
|
491
|
+
"Yes",
|
|
492
|
+
"No",
|
|
493
|
+
"Not Known"
|
|
494
|
+
]
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"primary": {
|
|
498
|
+
"title": "Primary",
|
|
499
|
+
"type": "object",
|
|
500
|
+
"yesNoNotKnown": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"title": "",
|
|
503
|
+
"enum": [
|
|
504
|
+
"Yes",
|
|
505
|
+
"No",
|
|
506
|
+
"Not Known"
|
|
507
|
+
]
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"secondary": {
|
|
511
|
+
"title": "Secondary",
|
|
512
|
+
"type": "object",
|
|
513
|
+
"yesNoNotKnown": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"title": "",
|
|
516
|
+
"enum": [
|
|
517
|
+
"Yes",
|
|
518
|
+
"No",
|
|
519
|
+
"Not Known"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"college": {
|
|
524
|
+
"title": "College",
|
|
525
|
+
"type": "object",
|
|
526
|
+
"yesNoNotKnown": {
|
|
527
|
+
"type": "string",
|
|
528
|
+
"title": "",
|
|
529
|
+
"enum": [
|
|
530
|
+
"Yes",
|
|
531
|
+
"No",
|
|
532
|
+
"Not Known"
|
|
533
|
+
]
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"private": {
|
|
537
|
+
"title": "Private",
|
|
538
|
+
"type": "object",
|
|
539
|
+
"yesNoNotKnown": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"title": "",
|
|
542
|
+
"enum": [
|
|
543
|
+
"Yes",
|
|
544
|
+
"No",
|
|
545
|
+
"Not Known"
|
|
546
|
+
]
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"transport": {
|
|
555
|
+
"title": "Transportation facilities",
|
|
556
|
+
"type": "array",
|
|
557
|
+
"items": {
|
|
558
|
+
"type": "object",
|
|
559
|
+
"properties": {
|
|
560
|
+
"name": {
|
|
561
|
+
"title": "Name",
|
|
562
|
+
"type": "string"
|
|
563
|
+
},
|
|
564
|
+
"transportType": {
|
|
565
|
+
"title": "Type of transport service",
|
|
566
|
+
"type": "string",
|
|
567
|
+
"enum": [
|
|
568
|
+
"Local connection",
|
|
569
|
+
"Ferry terminal",
|
|
570
|
+
"Bus stop/station",
|
|
571
|
+
"National rail station",
|
|
572
|
+
"Trunk road/motorway",
|
|
573
|
+
"Airport",
|
|
574
|
+
"Helipad",
|
|
575
|
+
"Other"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
"latitude": {
|
|
579
|
+
"title": "Latitude",
|
|
580
|
+
"type": "number",
|
|
581
|
+
"minimum": -90,
|
|
582
|
+
"maximum": 90
|
|
583
|
+
},
|
|
584
|
+
"longitude": {
|
|
585
|
+
"title": "Longitude",
|
|
586
|
+
"type": "number",
|
|
587
|
+
"minimum": -180,
|
|
588
|
+
"maximum": 180
|
|
589
|
+
},
|
|
590
|
+
"distanceInMiles": {
|
|
591
|
+
"title": "Distance in miles",
|
|
592
|
+
"type": "number"
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"healthCare": {
|
|
598
|
+
"title": "Nearby healthcare services",
|
|
599
|
+
"type": "array",
|
|
600
|
+
"items": {
|
|
601
|
+
"type": "object",
|
|
602
|
+
"title": "Healthcare service",
|
|
603
|
+
"properties": {
|
|
604
|
+
"name": {
|
|
605
|
+
"title": "Name",
|
|
606
|
+
"type": "string"
|
|
607
|
+
},
|
|
608
|
+
"typeOfHealthCare": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"title": "Type of healthcare facility: hospital, dental surgery etc"
|
|
611
|
+
},
|
|
612
|
+
"contact": {
|
|
613
|
+
"type": "object",
|
|
614
|
+
"title": "Contact details",
|
|
615
|
+
"properties": {
|
|
616
|
+
"address": {
|
|
617
|
+
"title": "Address",
|
|
618
|
+
"type": "object",
|
|
619
|
+
"properties": {
|
|
620
|
+
"line1": {
|
|
621
|
+
"title": "Address line 1",
|
|
622
|
+
"type": "string",
|
|
623
|
+
"minLength": 1
|
|
624
|
+
},
|
|
625
|
+
"line2": {
|
|
626
|
+
"title": "Address line 2",
|
|
627
|
+
"type": "string"
|
|
628
|
+
},
|
|
629
|
+
"line3": {
|
|
630
|
+
"title": "Address line 3",
|
|
631
|
+
"type": "string"
|
|
632
|
+
},
|
|
633
|
+
"town": {
|
|
634
|
+
"title": "Town",
|
|
635
|
+
"type": "string"
|
|
636
|
+
},
|
|
637
|
+
"postcode": {
|
|
638
|
+
"title": "Postcode",
|
|
639
|
+
"type": "string",
|
|
640
|
+
"minLength": 1
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"telephone": {
|
|
645
|
+
"title": "Telephone",
|
|
646
|
+
"type": "string",
|
|
647
|
+
"minLength": 1
|
|
648
|
+
},
|
|
649
|
+
"emailAddress": {
|
|
650
|
+
"title": "Email address",
|
|
651
|
+
"type": "string",
|
|
652
|
+
"format": "email"
|
|
653
|
+
},
|
|
654
|
+
"website": {
|
|
655
|
+
"title": "Website Url",
|
|
656
|
+
"type": "string",
|
|
657
|
+
"format": "uri"
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"containsAccidentAndEmergencyFacility": {
|
|
662
|
+
"type": "string",
|
|
663
|
+
"title": "",
|
|
664
|
+
"enum": [
|
|
665
|
+
"Yes",
|
|
666
|
+
"No",
|
|
667
|
+
"Not Known"
|
|
668
|
+
]
|
|
669
|
+
},
|
|
670
|
+
"distanceInMiles": {
|
|
671
|
+
"title": "Approximate Distance in miles",
|
|
672
|
+
"type": "number"
|
|
673
|
+
},
|
|
674
|
+
"specialties": {
|
|
675
|
+
"type": "array",
|
|
676
|
+
"items": {
|
|
677
|
+
"type": "string"
|
|
678
|
+
},
|
|
679
|
+
"title": "Specialties"
|
|
680
|
+
},
|
|
681
|
+
"openingHours": {
|
|
682
|
+
"type": "array",
|
|
683
|
+
"items": {
|
|
684
|
+
"type": "object",
|
|
685
|
+
"properties": {
|
|
686
|
+
"day": {
|
|
687
|
+
"type": "string",
|
|
688
|
+
"enum": [
|
|
689
|
+
"Sun",
|
|
690
|
+
"Mon",
|
|
691
|
+
"Tue",
|
|
692
|
+
"Wed",
|
|
693
|
+
"Thu",
|
|
694
|
+
"Fri",
|
|
695
|
+
"Sat"
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"hours": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"required": [
|
|
703
|
+
"day",
|
|
704
|
+
"hours"
|
|
705
|
+
]
|
|
706
|
+
},
|
|
707
|
+
"title": "Opening hours"
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
},
|
|
279
714
|
"connectivity": {
|
|
280
715
|
"title": "Connectivity",
|
|
281
716
|
"type": "object",
|
|
@@ -4972,7 +5407,7 @@
|
|
|
4972
5407
|
"title": "",
|
|
4973
5408
|
"enum": [
|
|
4974
5409
|
"Yes",
|
|
4975
|
-
"No
|
|
5410
|
+
"No",
|
|
4976
5411
|
"Not applicable"
|
|
4977
5412
|
]
|
|
4978
5413
|
}
|
|
@@ -4991,7 +5426,7 @@
|
|
|
4991
5426
|
"properties": {
|
|
4992
5427
|
"yesNoNotApplicable": {
|
|
4993
5428
|
"enum": [
|
|
4994
|
-
"No
|
|
5429
|
+
"No"
|
|
4995
5430
|
]
|
|
4996
5431
|
}
|
|
4997
5432
|
}
|
|
@@ -6215,6 +6650,7 @@
|
|
|
6215
6650
|
"enum": [
|
|
6216
6651
|
"Enclosed",
|
|
6217
6652
|
"To follow",
|
|
6653
|
+
"No",
|
|
6218
6654
|
"Not applicable"
|
|
6219
6655
|
]
|
|
6220
6656
|
},
|
|
@@ -6611,7 +7047,8 @@
|
|
|
6611
7047
|
"title": "",
|
|
6612
7048
|
"enum": [
|
|
6613
7049
|
"Yes",
|
|
6614
|
-
"No"
|
|
7050
|
+
"No",
|
|
7051
|
+
"Not applicable"
|
|
6615
7052
|
]
|
|
6616
7053
|
}
|
|
6617
7054
|
},
|
|
@@ -32811,6 +33248,39 @@
|
|
|
32811
33248
|
}
|
|
32812
33249
|
]
|
|
32813
33250
|
}
|
|
33251
|
+
},
|
|
33252
|
+
"documents": {
|
|
33253
|
+
"title": "Documents",
|
|
33254
|
+
"description": "Documents associated with the transaction",
|
|
33255
|
+
"type": "array",
|
|
33256
|
+
"items": {
|
|
33257
|
+
"type": "object",
|
|
33258
|
+
"properties": {
|
|
33259
|
+
"displayName": {
|
|
33260
|
+
"title": "Human-readable name of document",
|
|
33261
|
+
"type": "string",
|
|
33262
|
+
"minLength": 1
|
|
33263
|
+
},
|
|
33264
|
+
"fileName": {
|
|
33265
|
+
"title": "File name of the document",
|
|
33266
|
+
"type": "string",
|
|
33267
|
+
"minLength": 1
|
|
33268
|
+
},
|
|
33269
|
+
"mimeType": {
|
|
33270
|
+
"title": "Document MIME type",
|
|
33271
|
+
"type": "string",
|
|
33272
|
+
"minLength": 1
|
|
33273
|
+
},
|
|
33274
|
+
"documentType": {
|
|
33275
|
+
"title": "Human-readable document category",
|
|
33276
|
+
"type": "string",
|
|
33277
|
+
"minLength": 1
|
|
33278
|
+
},
|
|
33279
|
+
"externalIds": {
|
|
33280
|
+
"type": "object"
|
|
33281
|
+
}
|
|
33282
|
+
}
|
|
33283
|
+
}
|
|
32814
33284
|
}
|
|
32815
33285
|
}
|
|
32816
33286
|
}
|
|
@@ -38,7 +38,18 @@
|
|
|
38
38
|
"isNewBuild": {},
|
|
39
39
|
"location": {
|
|
40
40
|
"latitude": {},
|
|
41
|
-
"longitude": {}
|
|
41
|
+
"longitude": {},
|
|
42
|
+
"bng": {
|
|
43
|
+
"easting": {},
|
|
44
|
+
"northing": {}
|
|
45
|
+
},
|
|
46
|
+
"googleStreetViewPOV": {
|
|
47
|
+
"heading": {},
|
|
48
|
+
"pitch": {},
|
|
49
|
+
"zoom": {},
|
|
50
|
+
"lat": {},
|
|
51
|
+
"lng": {}
|
|
52
|
+
}
|
|
42
53
|
},
|
|
43
54
|
"localAuthority": {
|
|
44
55
|
"localAuthorityName": {},
|
|
@@ -56,6 +67,80 @@
|
|
|
56
67
|
"mediaUrl": {},
|
|
57
68
|
"caption": {}
|
|
58
69
|
},
|
|
70
|
+
"buildInformation": {
|
|
71
|
+
"internalArea": {
|
|
72
|
+
"area": {},
|
|
73
|
+
"units": {}
|
|
74
|
+
},
|
|
75
|
+
"yearOfBuild": {}
|
|
76
|
+
},
|
|
77
|
+
"residentialPropertyFeatures": {
|
|
78
|
+
"bedrooms": {},
|
|
79
|
+
"bathrooms": {},
|
|
80
|
+
"receptions": {},
|
|
81
|
+
"kitchens": {},
|
|
82
|
+
"diningAreas": {},
|
|
83
|
+
"outsideAreas": {}
|
|
84
|
+
},
|
|
85
|
+
"nearbyFacilities": {
|
|
86
|
+
"schools": {
|
|
87
|
+
"name": {},
|
|
88
|
+
"contact": {
|
|
89
|
+
"address": {
|
|
90
|
+
"line1": {},
|
|
91
|
+
"line2": {},
|
|
92
|
+
"line3": {},
|
|
93
|
+
"town": {},
|
|
94
|
+
"postcode": {}
|
|
95
|
+
},
|
|
96
|
+
"telephone": {},
|
|
97
|
+
"emailAddress": {},
|
|
98
|
+
"website": {}
|
|
99
|
+
},
|
|
100
|
+
"ofstedRating": {},
|
|
101
|
+
"pupils": {},
|
|
102
|
+
"distanceInMiles": {},
|
|
103
|
+
"ageRange": {},
|
|
104
|
+
"religiousCharacter": {},
|
|
105
|
+
"schoolType": {
|
|
106
|
+
"nursery": {},
|
|
107
|
+
"primary": {},
|
|
108
|
+
"secondary": {},
|
|
109
|
+
"college": {},
|
|
110
|
+
"private": {}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"transport": {
|
|
114
|
+
"name": {},
|
|
115
|
+
"transportType": {},
|
|
116
|
+
"latitude": {},
|
|
117
|
+
"longitude": {},
|
|
118
|
+
"distanceInMiles": {}
|
|
119
|
+
},
|
|
120
|
+
"healthCare": {
|
|
121
|
+
"name": {},
|
|
122
|
+
"typeOfHealthCare": {},
|
|
123
|
+
"contact": {
|
|
124
|
+
"address": {
|
|
125
|
+
"line1": {},
|
|
126
|
+
"line2": {},
|
|
127
|
+
"line3": {},
|
|
128
|
+
"town": {},
|
|
129
|
+
"postcode": {}
|
|
130
|
+
},
|
|
131
|
+
"telephone": {},
|
|
132
|
+
"emailAddress": {},
|
|
133
|
+
"website": {}
|
|
134
|
+
},
|
|
135
|
+
"containsAccidentAndEmergencyFacility": {},
|
|
136
|
+
"distanceInMiles": {},
|
|
137
|
+
"specialties": {},
|
|
138
|
+
"openingHours": {
|
|
139
|
+
"day": {},
|
|
140
|
+
"hours": {}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
59
144
|
"connectivity": {
|
|
60
145
|
"broadband": {
|
|
61
146
|
"MaxBbPredictedDown": {},
|
|
@@ -3642,6 +3727,13 @@
|
|
|
3642
3727
|
"recommendations": {},
|
|
3643
3728
|
"complianceStatement": {}
|
|
3644
3729
|
}
|
|
3730
|
+
},
|
|
3731
|
+
"documents": {
|
|
3732
|
+
"displayName": {},
|
|
3733
|
+
"fileName": {},
|
|
3734
|
+
"mimeType": {},
|
|
3735
|
+
"documentType": {},
|
|
3736
|
+
"externalIds": {}
|
|
3645
3737
|
}
|
|
3646
3738
|
}
|
|
3647
3739
|
}
|