@pdtf/schemas 2.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdtf/schemas",
3
- "version": "2.1.0",
3
+ "version": "2.1.2-1",
4
4
  "description": "Property Data Trust Framework Schemas and Utilities",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -273,6 +273,53 @@
273
273
  "type": "number",
274
274
  "minimum": -180,
275
275
  "maximum": 180
276
+ },
277
+ "bng": {
278
+ "title": "British National Grid coordinates",
279
+ "type": "object",
280
+ "required": ["easting", "northing"],
281
+ "properties": {
282
+ "easting": {
283
+ "title": "BNG easting",
284
+ "type": "number"
285
+ },
286
+ "northing": {
287
+ "title": "BNG northing",
288
+ "type": "number"
289
+ }
290
+ }
291
+ },
292
+ "googleStreetViewPOV": {
293
+ "title": "Street View to render street nearby property in Google Street View ",
294
+ "type": "object",
295
+ "properties": {
296
+ "heading": {
297
+ "title": "The heading for the google streetview camera",
298
+ "type": "number",
299
+ "minimum": 0,
300
+ "maximum": 360
301
+ },
302
+ "pitch": {
303
+ "title": "The pitch for the google streetview camera",
304
+ "type": "number"
305
+ },
306
+ "zoom": {
307
+ "title": "The zoom level for the google streetview camera",
308
+ "type": "number"
309
+ },
310
+ "lat": {
311
+ "title": "The latitude for the google streetview camera",
312
+ "type": "number",
313
+ "minimum": -90,
314
+ "maximum": 90
315
+ },
316
+ "lng": {
317
+ "title": "The longitude for the google streetview camera",
318
+ "type": "number",
319
+ "minimum": -180,
320
+ "maximum": 180
321
+ }
322
+ }
276
323
  }
277
324
  }
278
325
  },
@@ -360,6 +407,361 @@
360
407
  }
361
408
  }
362
409
  },
410
+ "buildInformation": {
411
+ "title": "Information related to property build",
412
+ "type": "object",
413
+ "properties": {
414
+ "internalArea": {
415
+ "title": "Total internal floor area",
416
+ "type": "object",
417
+ "properties": {
418
+ "area": {
419
+ "title": "Internal area value",
420
+ "type": "number",
421
+ "minimum": 0
422
+ },
423
+ "units": {
424
+ "title": "Internal area units",
425
+ "type": "string",
426
+ "enum": ["square metres", "square feet"]
427
+ }
428
+ }
429
+ },
430
+ "yearOfBuild": {
431
+ "title": "Year the property was built",
432
+ "type": "integer"
433
+ }
434
+ }
435
+ },
436
+ "residentialPropertyFeatures": {
437
+ "title": "Residential property features",
438
+ "type": "object",
439
+ "properties": {
440
+ "bedrooms": {
441
+ "title": "Number of bedrooms",
442
+ "type": "integer"
443
+ },
444
+ "bathrooms": {
445
+ "title": "Number of bathrooms",
446
+ "type": "integer"
447
+ },
448
+ "receptions": {
449
+ "title": "Number of reception rooms",
450
+ "type": "integer"
451
+ },
452
+ "kitchens": {
453
+ "title": "Number of kitchens",
454
+ "type": "integer"
455
+ },
456
+ "diningAreas": {
457
+ "title": "Number of dining areas",
458
+ "type": "integer"
459
+ },
460
+ "outsideAreas": {
461
+ "title": "Outside areas of the property",
462
+ "type": "array",
463
+ "items": {
464
+ "type": "string"
465
+ }
466
+ }
467
+ }
468
+ },
469
+ "nearbyFacilities": {
470
+ "title": "Information about nearby facilties like hospital, school etc",
471
+ "type": "object",
472
+ "properties": {
473
+ "schools": {
474
+ "title": "Schools",
475
+ "type": "array",
476
+ "items": {
477
+ "type": "object",
478
+ "properties": {
479
+ "name": {
480
+ "type": "string",
481
+ "title": "Name"
482
+ },
483
+ "contact": {
484
+ "type": "object",
485
+ "title": "Contact Details",
486
+ "properties": {
487
+ "address": {
488
+ "title": "Address",
489
+ "type": "object",
490
+ "properties": {
491
+ "line1": {
492
+ "title": "Address line 1",
493
+ "type": "string",
494
+ "minLength": 1
495
+ },
496
+ "line2": {
497
+ "title": "Address line 2",
498
+ "type": "string"
499
+ },
500
+ "line3": {
501
+ "title": "Address line 3",
502
+ "type": "string"
503
+ },
504
+ "town": {
505
+ "title": "Town",
506
+ "type": "string"
507
+ },
508
+ "postcode": {
509
+ "title": "Postcode",
510
+ "type": "string",
511
+ "minLength": 1
512
+ }
513
+ }
514
+ },
515
+ "telephone": {
516
+ "title": "Telephone",
517
+ "type": "string",
518
+ "minLength": 1
519
+ },
520
+ "emailAddress": {
521
+ "title": "Email address",
522
+ "type": "string",
523
+ "format": "email"
524
+ },
525
+ "website": {
526
+ "title": "School website",
527
+ "type": "string",
528
+ "format": "uri"
529
+ }
530
+ }
531
+ },
532
+ "ofstedRating": {
533
+ "type": "string",
534
+ "title": "Ofsted Rating",
535
+ "enum": [
536
+ "Outstanding",
537
+ "Good",
538
+ "Requires Improvement",
539
+ "Inadequate"
540
+ ]
541
+ },
542
+ "pupils": {
543
+ "type": "integer",
544
+ "title": "Number of Pupils"
545
+ },
546
+ "distanceInMiles": {
547
+ "type": "number",
548
+ "title": "Distance in miles"
549
+ },
550
+ "ageRange": {
551
+ "type": "string",
552
+ "title": "Age Range of student in format minimumAge-maximimAge"
553
+ },
554
+ "religiousCharacter": {
555
+ "type": "string",
556
+ "title": "Religious character of school, if any"
557
+ },
558
+ "schoolType": {
559
+ "type": "object",
560
+ "title": "Type of School",
561
+ "properties": {
562
+ "nursery": {
563
+ "title": "Nursery",
564
+ "type": "object",
565
+ "yesNoNotKnown": {
566
+ "type": "string",
567
+ "title": "",
568
+ "enum": ["Yes", "No", "Not Known"]
569
+ }
570
+ },
571
+ "primary": {
572
+ "title": "Primary",
573
+ "type": "object",
574
+ "yesNoNotKnown": {
575
+ "type": "string",
576
+ "title": "",
577
+ "enum": ["Yes", "No", "Not Known"]
578
+ }
579
+ },
580
+ "secondary": {
581
+ "title": "Secondary",
582
+ "type": "object",
583
+ "yesNoNotKnown": {
584
+ "type": "string",
585
+ "title": "",
586
+ "enum": ["Yes", "No", "Not Known"]
587
+ }
588
+ },
589
+ "college": {
590
+ "title": "College",
591
+ "type": "object",
592
+ "yesNoNotKnown": {
593
+ "type": "string",
594
+ "title": "",
595
+ "enum": ["Yes", "No", "Not Known"]
596
+ }
597
+ },
598
+ "private": {
599
+ "title": "Private",
600
+ "type": "object",
601
+ "yesNoNotKnown": {
602
+ "type": "string",
603
+ "title": "",
604
+ "enum": ["Yes", "No", "Not Known"]
605
+ }
606
+ }
607
+ }
608
+ }
609
+ }
610
+ }
611
+ },
612
+ "transport": {
613
+ "title": "Transportation facilities",
614
+ "type": "array",
615
+ "items": {
616
+ "type": "object",
617
+ "properties": {
618
+ "name": {
619
+ "title": "Name",
620
+ "type": "string"
621
+ },
622
+ "transportType": {
623
+ "title": "Type of transport service",
624
+ "type": "string",
625
+ "enum": [
626
+ "Local connection",
627
+ "Ferry terminal",
628
+ "Bus stop/station",
629
+ "National rail station",
630
+ "Trunk road/motorway",
631
+ "Airport",
632
+ "Helipad",
633
+ "Other"
634
+ ]
635
+ },
636
+ "latitude": {
637
+ "title": "Latitude",
638
+ "type": "number",
639
+ "minimum": -90,
640
+ "maximum": 90
641
+ },
642
+ "longitude": {
643
+ "title": "Longitude",
644
+ "type": "number",
645
+ "minimum": -180,
646
+ "maximum": 180
647
+ },
648
+ "distanceInMiles": {
649
+ "title": "Distance in miles",
650
+ "type": "number"
651
+ }
652
+ }
653
+ }
654
+ },
655
+ "healthCare": {
656
+ "title": "Nearby healthcare services",
657
+ "type": "array",
658
+ "items": {
659
+ "type": "object",
660
+ "title": "Healthcare service",
661
+ "properties": {
662
+ "name": {
663
+ "title": "Name",
664
+ "type": "string"
665
+ },
666
+ "typeOfHealthCare": {
667
+ "type": "string",
668
+ "title": "Type of healthcare facility: hospital, dental surgery etc"
669
+ },
670
+ "contact": {
671
+ "type": "object",
672
+ "title": "Contact details",
673
+ "properties": {
674
+ "address": {
675
+ "title": "Address",
676
+ "type": "object",
677
+ "properties": {
678
+ "line1": {
679
+ "title": "Address line 1",
680
+ "type": "string",
681
+ "minLength": 1
682
+ },
683
+ "line2": {
684
+ "title": "Address line 2",
685
+ "type": "string"
686
+ },
687
+ "line3": {
688
+ "title": "Address line 3",
689
+ "type": "string"
690
+ },
691
+ "town": {
692
+ "title": "Town",
693
+ "type": "string"
694
+ },
695
+ "postcode": {
696
+ "title": "Postcode",
697
+ "type": "string",
698
+ "minLength": 1
699
+ }
700
+ }
701
+ },
702
+ "telephone": {
703
+ "title": "Telephone",
704
+ "type": "string",
705
+ "minLength": 1
706
+ },
707
+ "emailAddress": {
708
+ "title": "Email address",
709
+ "type": "string",
710
+ "format": "email"
711
+ },
712
+ "website": {
713
+ "title": "Website Url",
714
+ "type": "string",
715
+ "format": "uri"
716
+ }
717
+ }
718
+ },
719
+ "containsAccidentAndEmergencyFacility": {
720
+ "type": "string",
721
+ "title": "",
722
+ "enum": ["Yes", "No", "Not Known"]
723
+ },
724
+ "distanceInMiles": {
725
+ "title": "Approximate Distance in miles",
726
+ "type": "number"
727
+ },
728
+ "specialties": {
729
+ "type": "array",
730
+ "items": {
731
+ "type": "string"
732
+ },
733
+ "title": "Specialties"
734
+ },
735
+ "openingHours": {
736
+ "type": "array",
737
+ "items": {
738
+ "type": "object",
739
+ "properties": {
740
+ "day": {
741
+ "type": "string",
742
+ "enum": [
743
+ "Sun",
744
+ "Mon",
745
+ "Tue",
746
+ "Wed",
747
+ "Thu",
748
+ "Fri",
749
+ "Sat"
750
+ ]
751
+ },
752
+ "hours": {
753
+ "type": "string"
754
+ }
755
+ },
756
+ "required": ["day", "hours"]
757
+ },
758
+ "title": "Opening hours"
759
+ }
760
+ }
761
+ }
762
+ }
763
+ }
764
+ },
363
765
  "connectivity": {
364
766
  "title": "Connectivity",
365
767
  "type": "object",
@@ -36230,6 +36632,39 @@
36230
36632
  }
36231
36633
  ]
36232
36634
  }
36635
+ },
36636
+ "documents": {
36637
+ "title": "Documents",
36638
+ "description": "Documents associated with the transaction",
36639
+ "type": "array",
36640
+ "items": {
36641
+ "type": "object",
36642
+ "properties": {
36643
+ "displayName": {
36644
+ "title": "Human-readable name of document",
36645
+ "type": "string",
36646
+ "minLength": 1
36647
+ },
36648
+ "fileName": {
36649
+ "title": "File name of the document",
36650
+ "type": "string",
36651
+ "minLength": 1
36652
+ },
36653
+ "mimeType": {
36654
+ "title": "Document MIME type",
36655
+ "type": "string",
36656
+ "minLength": 1
36657
+ },
36658
+ "documentType": {
36659
+ "title": "Human-readable document category",
36660
+ "type": "string",
36661
+ "minLength": 1
36662
+ },
36663
+ "externalIds": {
36664
+ "type": "object"
36665
+ }
36666
+ }
36667
+ }
36233
36668
  }
36234
36669
  }
36235
36670
  }
@@ -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",
@@ -32813,6 +33248,39 @@
32813
33248
  }
32814
33249
  ]
32815
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
+ }
32816
33284
  }
32817
33285
  }
32818
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
  }