@pdtf/schemas 3.0.0-10 → 3.0.0-12

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.
@@ -265,16 +265,6 @@
265
265
  "title": "Unique Property Reference Number ",
266
266
  "type": "integer"
267
267
  },
268
- "isNewBuild": {
269
- "title": "Is the property a New Build?",
270
- "type": "object",
271
- "properties": {
272
- "yesNo": {
273
- "type": "string",
274
- "enum": ["Yes", "No"]
275
- }
276
- }
277
- },
278
268
  "location": {
279
269
  "title": "Geographical location",
280
270
  "type": "object",
@@ -452,14 +442,26 @@
452
442
  "ntsRef": "B1.1",
453
443
  "title": "About the property building",
454
444
  "type": "object",
455
- "ntsRequired": ["building"],
445
+ "ntsRequired": ["building", "roomDimensions"],
456
446
  "properties": {
457
447
  "building": {
458
448
  "ntsRef": "B1.1.1",
459
449
  "title": "Building informatiom",
460
450
  "type": "object",
461
- "ntsRequired": ["propertyType"],
451
+ "ntsRequired": ["builtForm", "propertyType"],
462
452
  "properties": {
453
+ "builtForm": {
454
+ "ntsRef": "B1.1.2",
455
+ "title": "Built form",
456
+ "type": "string",
457
+ "enum": [
458
+ "Detached",
459
+ "Semi-detached",
460
+ "Terraced",
461
+ "End of terrace",
462
+ "Other"
463
+ ]
464
+ },
463
465
  "propertyType": {
464
466
  "ntsRef": "B1.1.1.1",
465
467
  "title": "Property type",
@@ -496,39 +498,14 @@
496
498
  "properties": {
497
499
  "propertyType": {
498
500
  "enum": ["House", "Bungalow"]
499
- },
500
- "builtForm": {
501
- "ntsRef": "B1.1.2",
502
- "title": "Built form",
503
- "type": "string",
504
- "enum": [
505
- "Detached",
506
- "Semi-detached",
507
- "Terraced",
508
- "End of terrace",
509
- "Other"
510
- ]
511
501
  }
512
- },
513
- "ntsRequired": ["builtForm"]
502
+ }
514
503
  },
515
504
  {
516
505
  "properties": {
517
506
  "propertyType": {
518
507
  "enum": ["Maisonette", "Flat"]
519
508
  },
520
- "builtForm": {
521
- "ntsRef": "B1.1.2",
522
- "title": "Built form",
523
- "type": "string",
524
- "enum": [
525
- "Detached",
526
- "Semi-detached",
527
- "Terraced",
528
- "End of terrace",
529
- "Other"
530
- ]
531
- },
532
509
  "numberOfFloors": {
533
510
  "ntsRef": "B1.1.3",
534
511
  "title": "Number of floors in the building",
@@ -589,7 +566,6 @@
589
566
  }
590
567
  },
591
568
  "ntsRequired": [
592
- "builtForm",
593
569
  "numberOfFloors",
594
570
  "entranceFloor",
595
571
  "hasLift",
@@ -618,67 +594,117 @@
618
594
  "title": "Year the property was built",
619
595
  "type": "integer"
620
596
  },
621
- "rooms": {
597
+ "isNewBuild": {
598
+ "title": "Is the property a New Build?",
599
+ "type": "object",
600
+ "properties": {
601
+ "yesNo": {
602
+ "type": "string",
603
+ "enum": ["Yes", "No"]
604
+ }
605
+ }
606
+ },
607
+ "roomDimensions": {
622
608
  "ntsRef": "B2",
623
- "title": "Rooms",
624
- "description": "Information about the property's rooms",
625
- "type": "array",
626
- "items": {
627
- "type": "object",
628
- "properties": {
629
- "roomName": {
630
- "ntsRef": "B2.1",
631
- "type": "string",
632
- "title": "The name of the room",
633
- "minLength": 1
634
- },
635
- "description": {
636
- "ntsRef": "B2.2",
637
- "type": "string",
638
- "minLength": 1,
639
- "title": "The specific description of the room"
640
- },
641
- "length": {
642
- "ntsRef": "B2.3",
643
- "type": "number",
644
- "minimum": 0,
645
- "title": "The length of the room"
646
- },
647
- "width": {
648
- "ntsRef": "B2.4",
649
- "type": "number",
650
- "minimum": 0,
651
- "title": "The width of the room"
652
- },
653
- "units": {
654
- "ntsRef": "B2.5",
655
- "title": "The units which the length and width of the room have been provided in",
656
- "type": "string",
657
- "enum": [
658
- "meters",
659
- "centimetres",
660
- "millimetres",
661
- "feet",
662
- "inches"
663
- ]
664
- },
665
- "dimensionDetails": {
666
- "ntsRef": "B2.6",
667
- "title": "Any additional description or clarification of the room dimensions",
668
- "type": "string",
669
- "minLength": 1
670
- },
671
- "photoUrls": {
672
- "ntsRef": "B2.7",
673
- "title": "The URLs of images which should be associated with this room",
674
- "type": "array",
675
- "items": {
676
- "type": "string",
677
- "format": "uri"
609
+ "title": "Room dimensions",
610
+ "type": "object",
611
+ "ntsRequired": ["hasFloorplan"],
612
+ "properties": {
613
+ "hasFloorplan": {
614
+ "ntsRef": "B2.1",
615
+ "title": "Is a floorplan available which includes the dimensions of all the rooms?",
616
+ "type": "string",
617
+ "enum": ["Yes", "No"]
618
+ }
619
+ },
620
+ "discriminator": {
621
+ "propertyName": "hasFloorplan"
622
+ },
623
+ "oneOf": [
624
+ {
625
+ "properties": {
626
+ "hasFloorplan": {
627
+ "enum": ["Yes"]
678
628
  }
679
629
  }
630
+ },
631
+ {
632
+ "properties": {
633
+ "hasFloorplan": {
634
+ "enum": ["No"]
635
+ },
636
+ "rooms": {
637
+ "ntsRef": "B2.2",
638
+ "title": "Rooms",
639
+ "description": "Please supply dimensions for each of the rooms.",
640
+ "type": "array",
641
+ "items": {
642
+ "type": "object",
643
+ "properties": {
644
+ "roomName": {
645
+ "ntsRef": "B2.2.1",
646
+ "type": "string",
647
+ "title": "The name of the room",
648
+ "minLength": 1
649
+ },
650
+ "description": {
651
+ "ntsRef": "B2.2.2",
652
+ "type": "string",
653
+ "minLength": 1,
654
+ "title": "Description of the room"
655
+ },
656
+ "length": {
657
+ "ntsRef": "B2.2.3",
658
+ "type": "number",
659
+ "minimum": 0,
660
+ "title": "The length of the room"
661
+ },
662
+ "width": {
663
+ "ntsRef": "B2.2.4",
664
+ "type": "number",
665
+ "minimum": 0,
666
+ "title": "The width of the room"
667
+ },
668
+ "units": {
669
+ "ntsRef": "B2.2.5",
670
+ "title": "The units which the length and width of the room have been provided in",
671
+ "type": "string",
672
+ "enum": [
673
+ "meters",
674
+ "centimetres",
675
+ "millimetres",
676
+ "feet",
677
+ "inches"
678
+ ]
679
+ },
680
+ "dimensionDetails": {
681
+ "ntsRef": "B2.6",
682
+ "title": "Any additional description or clarification of the room dimensions",
683
+ "type": "string",
684
+ "minLength": 1
685
+ },
686
+ "photoUrls": {
687
+ "ntsRef": "B2.7",
688
+ "title": "The URLs of images which should be associated with this room",
689
+ "type": "array",
690
+ "items": {
691
+ "type": "string",
692
+ "format": "uri"
693
+ }
694
+ }
695
+ },
696
+ "ntsRequired": [
697
+ "roomName",
698
+ "length",
699
+ "width",
700
+ "units"
701
+ ]
702
+ }
703
+ }
704
+ },
705
+ "ntsRequired": ["rooms"]
680
706
  }
681
- }
707
+ ]
682
708
  }
683
709
  }
684
710
  },
@@ -19078,7 +19104,7 @@
19078
19104
  "mainsFoulDrainage": {
19079
19105
  "ntsRef": "A3.3.2",
19080
19106
  "baspiRef": "A7.1.0.11",
19081
- "rdsRef": "Services/WasteWaterSewarageDisposal",
19107
+ "rdsRef": "Services/WasteWaterSewerageDisposal",
19082
19108
  "ta6Ref": "12.4a",
19083
19109
  "con29DWRef": "2.1",
19084
19110
  "title": "Mains foul drainage / sewerage",
@@ -19117,6 +19143,13 @@
19117
19143
  },
19118
19144
  "con29DWRequired": ["details"]
19119
19145
  },
19146
+ {
19147
+ "properties": {
19148
+ "yesNo": {
19149
+ "enum": ["Not known"]
19150
+ }
19151
+ }
19152
+ },
19120
19153
  {
19121
19154
  "properties": {
19122
19155
  "yesNo": {
@@ -19140,107 +19173,252 @@
19140
19173
  {
19141
19174
  "properties": {
19142
19175
  "yesNo": {
19143
- "enum": ["No", "Not known"]
19176
+ "enum": ["No"]
19144
19177
  },
19145
- "sustainableDrainageSystem": {
19178
+ "offMainsDrainageSystem": {
19146
19179
  "ntsRef": "A3.3.3",
19147
- "baspiRef": "A7.1.0.13",
19148
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
19149
- "title": "Sustainable Drainage System",
19180
+ "baspiRef": "A7.1.10.13",
19181
+ "ta6Ref": "12.4a",
19150
19182
  "type": "object",
19183
+ "baspiRequired": [
19184
+ "offMainsDrainageSystemType",
19185
+ "otherConnectedProperties",
19186
+ "plantOnOtherLand",
19187
+ "plantRegistered",
19188
+ "plantDrainsIntoWaterway"
19189
+ ],
19190
+ "ntsRequired": ["offMainsDrainageSystemType"],
19191
+ "ta6Required": [
19192
+ "offMainsDrainageSystemType",
19193
+ "otherConnectedProperties",
19194
+ "plantOnOtherLand"
19195
+ ],
19151
19196
  "properties": {
19152
- "yesNo": {
19197
+ "offMainsDrainageSystemType": {
19153
19198
  "ntsRef": "A3.3.3.1",
19154
- "baspiRef": "A7.1.0.13.1",
19199
+ "baspiRef": "A7.",
19155
19200
  "type": "string",
19156
- "title": "",
19157
- "enum": ["Yes", "To be connected", "No"],
19158
- "ntsEnum": ["Yes", "No"]
19159
- }
19160
- },
19161
- "baspiRequired": ["yesNo"],
19162
- "ntsRequired": ["yesNo"],
19163
- "discriminator": {
19164
- "propertyName": "yesNo"
19165
- },
19166
- "oneOf": [
19167
- {
19201
+ "enum": [
19202
+ "Sustainable Drainage System",
19203
+ "Septic tank",
19204
+ "Cesspit",
19205
+ "Sewerage treatment plant"
19206
+ ]
19207
+ },
19208
+ "otherConnectedProperties": {
19209
+ "baspiRef": "A7.1.1",
19210
+ "rdsRef": "Services/OtherServices/SharedWith",
19211
+ "ta6Ref": "12.6",
19212
+ "piqRef": "A7.1.29",
19213
+ "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
19214
+ "type": "object",
19168
19215
  "properties": {
19169
19216
  "yesNo": {
19170
- "enum": ["No"]
19217
+ "baspiRef": "A7.1.1.1",
19218
+ "ta6Ref": "12.6.1",
19219
+ "type": "string",
19220
+ "title": "",
19221
+ "enum": ["Yes", "No"]
19171
19222
  }
19172
- }
19223
+ },
19224
+ "baspiRequired": ["yesNo"],
19225
+ "ta6Required": ["yesNo"],
19226
+ "discriminator": {
19227
+ "propertyName": "yesNo"
19228
+ },
19229
+ "oneOf": [
19230
+ {
19231
+ "properties": {
19232
+ "yesNo": {
19233
+ "enum": ["No"]
19234
+ }
19235
+ }
19236
+ },
19237
+ {
19238
+ "properties": {
19239
+ "yesNo": {
19240
+ "enum": ["Yes"]
19241
+ },
19242
+ "numberOfPropertiesSharing": {
19243
+ "baspiRef": "A7.1.1.1",
19244
+ "ta6Ref": "12.6.2",
19245
+ "title": "How many other properties?",
19246
+ "type": "integer"
19247
+ },
19248
+ "details": {
19249
+ "baspiRef": "A7.1.1.2",
19250
+ "title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for",
19251
+ "type": "string",
19252
+ "minLength": 1
19253
+ }
19254
+ },
19255
+ "baspiRequired": [
19256
+ "numberOfPropertiesSharing",
19257
+ "details"
19258
+ ],
19259
+ "ta6Required": [
19260
+ "numberOfPropertiesSharing"
19261
+ ]
19262
+ }
19263
+ ]
19173
19264
  },
19174
- {
19265
+ "plantOnOtherLand": {
19266
+ "baspiRef": "A7.1.2",
19267
+ "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
19268
+ "ta6Ref": "12.10",
19269
+ "piqRef": "A7.1.30",
19270
+ "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
19271
+ "type": "object",
19175
19272
  "properties": {
19176
19273
  "yesNo": {
19177
- "enum": ["Yes"]
19274
+ "baspiRef": "7.1.2.1",
19275
+ "ta6Ref": "12.10.1",
19276
+ "type": "string",
19277
+ "title": "",
19278
+ "enum": ["Yes", "No"]
19279
+ }
19280
+ },
19281
+ "baspiRequired": ["yesNo"],
19282
+ "discriminator": {
19283
+ "propertyName": "yesNo"
19284
+ },
19285
+ "oneOf": [
19286
+ {
19287
+ "properties": {
19288
+ "yesNo": {
19289
+ "enum": ["No"]
19290
+ }
19291
+ }
19178
19292
  },
19179
- "supplier": {
19180
- "baspiRef": "A7.1.0.13.3",
19181
- "title": "Supplier",
19182
- "type": "string"
19293
+ {
19294
+ "properties": {
19295
+ "yesNo": {
19296
+ "enum": ["Yes"]
19297
+ },
19298
+ "attachments": {
19299
+ "baspiRef": "7.1.2.2",
19300
+ "ta6Ref": "12.10.2",
19301
+ "title": "Please supply a plan showing the location of the system and how access is obtained.",
19302
+ "type": "string",
19303
+ "enum": ["Attached", "To follow"]
19304
+ }
19305
+ },
19306
+ "baspiRequired": ["attachments"],
19307
+ "ta6Required": ["attachments"]
19183
19308
  }
19184
- }
19309
+ ],
19310
+ "ta6Required": ["yesNo"]
19185
19311
  },
19186
- {
19312
+ "plantRegistered": {
19313
+ "baspiRef": "A7.1.3",
19314
+ "rdsRef": "Services/OtherServices/Certificates",
19315
+ "piqRef": "A7.1.31",
19316
+ "title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
19317
+ "type": "object",
19187
19318
  "properties": {
19188
19319
  "yesNo": {
19189
- "enum": ["To be connected"]
19190
- },
19191
- "dateToBeConnected": {
19192
- "baspiRef": "A7.1.0.13.2",
19193
- "title": "Date to be connected",
19320
+ "baspiRef": "A7.1.3.1",
19194
19321
  "type": "string",
19195
- "format": "date"
19322
+ "title": "",
19323
+ "enum": ["Yes", "No"]
19324
+ }
19325
+ },
19326
+ "baspiRequired": ["yesNo"],
19327
+ "discriminator": {
19328
+ "propertyName": "yesNo"
19329
+ },
19330
+ "oneOf": [
19331
+ {
19332
+ "properties": {
19333
+ "yesNo": {
19334
+ "enum": ["No"]
19335
+ }
19336
+ }
19196
19337
  },
19197
- "supplier": {
19198
- "baspiRef": "A7.1.0.13.3",
19199
- "title": "Supplier",
19200
- "type": "string"
19338
+ {
19339
+ "properties": {
19340
+ "yesNo": {
19341
+ "enum": ["Yes"]
19342
+ },
19343
+ "attachments": {
19344
+ "baspiRef": "A7.1.3.2",
19345
+ "title": "Please supply the appropriate permit to discharge or exemption certificate",
19346
+ "type": "string",
19347
+ "enum": ["Attached", "To follow"]
19348
+ }
19349
+ },
19350
+ "baspiRequired": ["attachments"]
19351
+ }
19352
+ ]
19353
+ },
19354
+ "plantDrainsIntoWaterway": {
19355
+ "baspiRef": "A7.1.4",
19356
+ "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
19357
+ "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
19358
+ "type": "object",
19359
+ "properties": {
19360
+ "yesNo": {
19361
+ "baspiRef": "A7.1.4.1",
19362
+ "type": "string",
19363
+ "title": "",
19364
+ "enum": [
19365
+ "Yes",
19366
+ "No, the effluent is discharged through a soakaway system."
19367
+ ]
19201
19368
  }
19202
19369
  },
19203
- "baspiRequired": ["dateToBeConnected"]
19204
- }
19205
- ]
19206
- },
19207
- "septicTank": {
19208
- "ntsRef": "A3.3.4",
19209
- "baspiRef": "A7.1.0.14",
19210
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
19211
- "piqRef": "A7.1.23",
19212
- "ta6Ref": "12.5a",
19213
- "title": "Septic tank",
19214
- "type": "object",
19215
- "baspiRequired": ["yesNo"],
19216
- "ntsRequired": ["yesNo"],
19217
- "ta6Required": ["yesNo"],
19218
- "properties": {
19219
- "yesNo": {
19220
- "ntsRef": "A3.3.4.1",
19221
- "baspiRef": "A7.1.0.14.1",
19222
- "ta6Ref": "12.5a1",
19223
- "type": "string",
19224
- "title": "",
19225
- "enum": ["Yes", "No"]
19370
+ "baspiRequired": ["yesNo"],
19371
+ "discriminator": {
19372
+ "propertyName": "yesNo"
19373
+ },
19374
+ "oneOf": [
19375
+ {
19376
+ "properties": {
19377
+ "yesNo": {
19378
+ "enum": [
19379
+ "No, the effluent is discharged through a soakaway system."
19380
+ ]
19381
+ }
19382
+ }
19383
+ },
19384
+ {
19385
+ "properties": {
19386
+ "yesNo": {
19387
+ "enum": ["Yes"]
19388
+ },
19389
+ "dischargeCompliesWithGBR": {
19390
+ "baspiRef": "A7.1.4.1",
19391
+ "rdsRef": "Services/OtherServices/ExternalConnections/Flags",
19392
+ "title": "Does it comply with the General Binding Rules for discharge into a waterway?",
19393
+ "type": "string",
19394
+ "enum": [
19395
+ "Yes",
19396
+ "No, it does not comply with the rules for discharge into a waterway."
19397
+ ]
19398
+ }
19399
+ },
19400
+ "baspiRequired": [
19401
+ "dischargeCompliesWithGBR"
19402
+ ]
19403
+ }
19404
+ ]
19226
19405
  }
19227
19406
  },
19228
-
19229
19407
  "discriminator": {
19230
- "propertyName": "yesNo"
19408
+ "propertyName": "offMainsDrainageSystemType"
19231
19409
  },
19232
19410
  "oneOf": [
19233
19411
  {
19234
19412
  "properties": {
19235
- "yesNo": {
19236
- "enum": ["No"]
19413
+ "offMainsDrainageSystemType": {
19414
+ "enum": ["Sustainable Drainage System"]
19237
19415
  }
19238
19416
  }
19239
19417
  },
19240
19418
  {
19241
19419
  "properties": {
19242
- "yesNo": {
19243
- "enum": ["Yes"]
19420
+ "offMainsDrainageSystemType": {
19421
+ "enum": ["Septic tank"]
19244
19422
  },
19245
19423
  "dateReplaced": {
19246
19424
  "baspiRef": "A7.1.0.14.2",
@@ -19266,46 +19444,11 @@
19266
19444
  "dateReplaced",
19267
19445
  "dateLastEmptied"
19268
19446
  ]
19269
- }
19270
- ]
19271
- },
19272
- "cesspit": {
19273
- "ntsRef": "A3.3.5",
19274
- "baspiRef": "A7.1.0.15",
19275
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
19276
- "ta6Ref": "12.5b",
19277
- "piqRef": "A7.1.25",
19278
- "title": "Cesspit",
19279
- "type": "object",
19280
- "baspiRequired": ["yesNo"],
19281
- "ntsRequired": ["yesNo"],
19282
- "ta6Required": ["yesNo"],
19283
- "properties": {
19284
- "yesNo": {
19285
- "ntsRef": "A3.3.5.1",
19286
- "baspiRef": "A7.1.0.15.1",
19287
- "ta6Ref": "12.5c1",
19288
- "type": "string",
19289
- "title": "",
19290
- "enum": ["Yes", "No"]
19291
- }
19292
- },
19293
-
19294
- "discriminator": {
19295
- "propertyName": "yesNo"
19296
- },
19297
- "oneOf": [
19298
- {
19299
- "properties": {
19300
- "yesNo": {
19301
- "enum": ["No"]
19302
- }
19303
- }
19304
19447
  },
19305
19448
  {
19306
19449
  "properties": {
19307
- "yesNo": {
19308
- "enum": ["Yes"]
19450
+ "offMainsDrainageSystemType": {
19451
+ "enum": ["Cesspit"]
19309
19452
  },
19310
19453
  "dateLastEmptied": {
19311
19454
  "baspiRef": "A7.1.0.15.2",
@@ -19318,46 +19461,11 @@
19318
19461
  },
19319
19462
  "baspiRequired": ["dateLastEmptied"],
19320
19463
  "ta6Required": ["dateLastEmptied"]
19321
- }
19322
- ]
19323
- },
19324
- "sewerageTreatmentPlant": {
19325
- "ntsRef": "A3.3.6",
19326
- "baspiRef": "A7.1.0.16",
19327
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
19328
- "ta6Ref": "12.5b",
19329
- "piqRef": "A7.1.27",
19330
- "title": "Sewerage treatment plant",
19331
- "type": "object",
19332
- "baspiRequired": ["yesNo"],
19333
- "ntsRequired": ["yesNo"],
19334
- "ta6Required": ["yesNo"],
19335
- "properties": {
19336
- "yesNo": {
19337
- "ntsRef": "A3.3.6.1",
19338
- "baspiRef": "A7.1.0.16.1",
19339
- "ta6Ref": "12.5b1",
19340
- "type": "string",
19341
- "title": "",
19342
- "enum": ["Yes", "No"]
19343
- }
19344
- },
19345
-
19346
- "discriminator": {
19347
- "propertyName": "yesNo"
19348
- },
19349
- "oneOf": [
19350
- {
19351
- "properties": {
19352
- "yesNo": {
19353
- "enum": ["No"]
19354
- }
19355
- }
19356
19464
  },
19357
19465
  {
19358
19466
  "properties": {
19359
- "yesNo": {
19360
- "enum": ["Yes"]
19467
+ "offMainsDrainageSystemType": {
19468
+ "enum": ["Sewerage treatment plant"]
19361
19469
  },
19362
19470
  "dateInstalled": {
19363
19471
  "baspiRef": "A7.1.0.16.2",
@@ -19395,225 +19503,8 @@
19395
19503
  ]
19396
19504
  }
19397
19505
  ]
19398
- },
19399
- "otherConnectedProperties": {
19400
- "baspiRef": "A7.1.1",
19401
- "rdsRef": "Services/OtherServices/SharedWith",
19402
- "ta6Ref": "12.6",
19403
- "piqRef": "A7.1.29",
19404
- "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
19405
- "type": "object",
19406
- "properties": {
19407
- "yesNo": {
19408
- "baspiRef": "A7.1.1.1",
19409
- "ta6Ref": "12.6.1",
19410
- "type": "string",
19411
- "title": "",
19412
- "enum": ["Yes", "No"]
19413
- }
19414
- },
19415
- "baspiRequired": ["yesNo"],
19416
- "ta6Required": ["yesNo"],
19417
- "discriminator": {
19418
- "propertyName": "yesNo"
19419
- },
19420
- "oneOf": [
19421
- {
19422
- "properties": {
19423
- "yesNo": {
19424
- "enum": ["No"]
19425
- }
19426
- }
19427
- },
19428
- {
19429
- "properties": {
19430
- "yesNo": {
19431
- "enum": ["Yes"]
19432
- },
19433
- "numberOfPropertiesSharing": {
19434
- "baspiRef": "A7.1.1.1",
19435
- "ta6Ref": "12.6.2",
19436
- "title": "How many other properties?",
19437
- "type": "integer"
19438
- },
19439
- "details": {
19440
- "baspiRef": "A7.1.1.2",
19441
- "title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for",
19442
- "type": "string",
19443
- "minLength": 1
19444
- }
19445
- },
19446
- "baspiRequired": [
19447
- "numberOfPropertiesSharing",
19448
- "details"
19449
- ],
19450
- "ta6Required": ["numberOfPropertiesSharing"]
19451
- }
19452
- ]
19453
- },
19454
- "plantOnOtherLand": {
19455
- "baspiRef": "A7.1.2",
19456
- "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
19457
- "ta6Ref": "12.10",
19458
- "piqRef": "A7.1.30",
19459
- "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
19460
- "type": "object",
19461
- "properties": {
19462
- "yesNo": {
19463
- "baspiRef": "7.1.2.1",
19464
- "ta6Ref": "12.10.1",
19465
- "type": "string",
19466
- "title": "",
19467
- "enum": ["Yes", "No"]
19468
- }
19469
- },
19470
- "baspiRequired": ["yesNo"],
19471
- "discriminator": {
19472
- "propertyName": "yesNo"
19473
- },
19474
- "oneOf": [
19475
- {
19476
- "properties": {
19477
- "yesNo": {
19478
- "enum": ["No"]
19479
- }
19480
- }
19481
- },
19482
- {
19483
- "properties": {
19484
- "yesNo": {
19485
- "enum": ["Yes"]
19486
- },
19487
- "attachments": {
19488
- "baspiRef": "7.1.2.2",
19489
- "ta6Ref": "12.10.2",
19490
- "title": "Please supply a plan showing the location of the system and how access is obtained.",
19491
- "type": "string",
19492
- "enum": ["Attached", "To follow"]
19493
- }
19494
- },
19495
- "baspiRequired": ["attachments"],
19496
- "ta6Required": ["attachments"]
19497
- }
19498
- ],
19499
- "ta6Required": ["yesNo"]
19500
- },
19501
- "plantRegistered": {
19502
- "baspiRef": "A7.1.3",
19503
- "rdsRef": "Services/OtherServices/Certificates",
19504
- "piqRef": "A7.1.31",
19505
- "title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
19506
- "type": "object",
19507
- "properties": {
19508
- "yesNo": {
19509
- "baspiRef": "A7.1.3.1",
19510
- "type": "string",
19511
- "title": "",
19512
- "enum": ["Yes", "No"]
19513
- }
19514
- },
19515
- "baspiRequired": ["yesNo"],
19516
- "discriminator": {
19517
- "propertyName": "yesNo"
19518
- },
19519
- "oneOf": [
19520
- {
19521
- "properties": {
19522
- "yesNo": {
19523
- "enum": ["No"]
19524
- }
19525
- }
19526
- },
19527
- {
19528
- "properties": {
19529
- "yesNo": {
19530
- "enum": ["Yes"]
19531
- },
19532
- "attachments": {
19533
- "baspiRef": "A7.1.3.2",
19534
- "title": "Please supply the appropriate permit to discharge or exemption certificate",
19535
- "type": "string",
19536
- "enum": ["Attached", "To follow"]
19537
- }
19538
- },
19539
- "baspiRequired": ["attachments"]
19540
- }
19541
- ]
19542
- },
19543
- "plantDrainsIntoWaterway": {
19544
- "baspiRef": "A7.1.4",
19545
- "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
19546
- "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
19547
- "type": "object",
19548
- "properties": {
19549
- "yesNo": {
19550
- "baspiRef": "A7.1.4.1",
19551
- "type": "string",
19552
- "title": "",
19553
- "enum": [
19554
- "Yes",
19555
- "No, the effluent is discharged through a soakaway system."
19556
- ]
19557
- }
19558
- },
19559
- "baspiRequired": ["yesNo"],
19560
- "discriminator": {
19561
- "propertyName": "yesNo"
19562
- },
19563
- "oneOf": [
19564
- {
19565
- "properties": {
19566
- "yesNo": {
19567
- "enum": [
19568
- "No, the effluent is discharged through a soakaway system."
19569
- ]
19570
- }
19571
- }
19572
- },
19573
- {
19574
- "properties": {
19575
- "yesNo": {
19576
- "enum": ["Yes"]
19577
- },
19578
- "dischargeCompliesWithGBR": {
19579
- "baspiRef": "A7.1.4.1",
19580
- "rdsRef": "Services/OtherServices/ExternalConnections/Flags",
19581
- "title": "Does it comply with the General Binding Rules for discharge into a waterway?",
19582
- "type": "string",
19583
- "enum": [
19584
- "Yes",
19585
- "No, it does not comply with the rules for discharge into a waterway."
19586
- ]
19587
- }
19588
- },
19589
- "baspiRequired": ["dischargeCompliesWithGBR"]
19590
- }
19591
- ]
19592
19506
  }
19593
- },
19594
- "baspiRequired": [
19595
- "sustainableDrainageSystem",
19596
- "septicTank",
19597
- "cesspit",
19598
- "sewerageTreatmentPlant",
19599
- "otherConnectedProperties",
19600
- "plantOnOtherLand",
19601
- "plantRegistered",
19602
- "plantDrainsIntoWaterway"
19603
- ],
19604
- "ntsRequired": [
19605
- "sustainableDrainageSystem",
19606
- "septicTank",
19607
- "cesspit",
19608
- "sewerageTreatmentPlant"
19609
- ],
19610
- "ta6Required": [
19611
- "septicTank",
19612
- "cesspit",
19613
- "sewerageTreatmentPlant",
19614
- "otherConnectedProperties",
19615
- "plantOnOtherLand"
19616
- ]
19507
+ }
19617
19508
  }
19618
19509
  ]
19619
19510
  },
@@ -21051,6 +20942,7 @@
21051
20942
  "ta6Ref": "8.6",
21052
20943
  "piqRef": "A10.4",
21053
20944
  "title": "A public right of way through and/or across your property, buildings or land",
20945
+ "ntsTitle": "Is there a public right of way through and/or across your house, buildings or land?",
21054
20946
  "type": "object",
21055
20947
  "properties": {
21056
20948
  "yesNo": {
@@ -21457,13 +21349,12 @@
21457
21349
  "ta6Ref": "7.1.0",
21458
21350
  "title": "Flooding",
21459
21351
  "type": "object",
21460
- "baspiRequired": ["floodRisk", "hasBeenFlooded"],
21352
+ "baspiRequired": ["hasBeenFlooded"],
21461
21353
  "ntsRequired": ["floodRisk", "hasBeenFlooded"],
21462
21354
  "ta6Required": ["hasBeenFlooded"],
21463
21355
  "properties": {
21464
21356
  "floodRisk": {
21465
21357
  "ntsRef": "C3.1.1.1",
21466
- "baspiRef": "A11.1.1",
21467
21358
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
21468
21359
  "piqRef": "A11.1.1",
21469
21360
  "title": "Flood Risk",