@pdtf/schemas 3.0.0-10 → 3.0.0-11

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,7 +442,7 @@
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",
@@ -618,65 +608,123 @@
618
608
  "title": "Year the property was built",
619
609
  "type": "integer"
620
610
  },
621
- "rooms": {
611
+ "isNewBuild": {
612
+ "title": "Is the property a New Build?",
613
+ "type": "object",
614
+ "properties": {
615
+ "yesNo": {
616
+ "type": "string",
617
+ "enum": ["Yes", "No"]
618
+ }
619
+ }
620
+ },
621
+ "roomDimensions": {
622
622
  "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
- ]
623
+ "title": "Room dimensions",
624
+ "type": "object",
625
+ "baspiRequired": ["hasFloorplan"],
626
+ "properties": {
627
+ "hasFloorplan": {
628
+ "ntsRef": "B2.1",
629
+ "title": "Is a floorplan available which includes the dimensions of all the rooms?",
630
+ "type": "object",
631
+ "properties": {
632
+ "yesNo": {
633
+ "ntsRef": "B2.1.1",
634
+ "type": "string",
635
+ "title": "",
636
+ "enum": ["Yes", "No"]
637
+ }
664
638
  },
665
- "dimensionDetails": {
666
- "ntsRef": "B2.6",
667
- "title": "Any additional description or clarification of the room dimensions",
668
- "type": "string",
669
- "minLength": 1
639
+ "ntsRequired": ["yesNo"],
640
+ "discriminator": {
641
+ "propertyName": "yesNo"
670
642
  },
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"
643
+ "oneOf": [
644
+ {
645
+ "properties": {
646
+ "yesNo": {
647
+ "enum": ["Yes"]
648
+ }
649
+ }
650
+ },
651
+ {
652
+ "properties": {
653
+ "yesNo": {
654
+ "enum": ["No"]
655
+ },
656
+ "rooms": {
657
+ "ntsRef": "B2",
658
+ "title": "Rooms",
659
+ "description": "Please supply dimensions for each of the rooms.",
660
+ "type": "array",
661
+ "items": {
662
+ "type": "object",
663
+ "properties": {
664
+ "roomName": {
665
+ "ntsRef": "B2.1.1",
666
+ "type": "string",
667
+ "title": "The name of the room",
668
+ "minLength": 1
669
+ },
670
+ "description": {
671
+ "ntsRef": "B2.1.2",
672
+ "type": "string",
673
+ "minLength": 1,
674
+ "title": "Description of the room"
675
+ },
676
+ "length": {
677
+ "ntsRef": "B2.1.3",
678
+ "type": "number",
679
+ "minimum": 0,
680
+ "title": "The length of the room"
681
+ },
682
+ "width": {
683
+ "ntsRef": "B2.1.4",
684
+ "type": "number",
685
+ "minimum": 0,
686
+ "title": "The width of the room"
687
+ },
688
+ "units": {
689
+ "ntsRef": "B2.1.5",
690
+ "title": "The units which the length and width of the room have been provided in",
691
+ "type": "string",
692
+ "enum": [
693
+ "meters",
694
+ "centimetres",
695
+ "millimetres",
696
+ "feet",
697
+ "inches"
698
+ ]
699
+ },
700
+ "dimensionDetails": {
701
+ "ntsRef": "B2.6",
702
+ "title": "Any additional description or clarification of the room dimensions",
703
+ "type": "string",
704
+ "minLength": 1
705
+ },
706
+ "photoUrls": {
707
+ "ntsRef": "B2.7",
708
+ "title": "The URLs of images which should be associated with this room",
709
+ "type": "array",
710
+ "items": {
711
+ "type": "string",
712
+ "format": "uri"
713
+ }
714
+ }
715
+ },
716
+ "ntsRequired": [
717
+ "roomName",
718
+ "length",
719
+ "width",
720
+ "units"
721
+ ]
722
+ }
723
+ }
724
+ },
725
+ "ntsRequired": ["rooms"]
678
726
  }
679
- }
727
+ ]
680
728
  }
681
729
  }
682
730
  }
@@ -19078,7 +19126,7 @@
19078
19126
  "mainsFoulDrainage": {
19079
19127
  "ntsRef": "A3.3.2",
19080
19128
  "baspiRef": "A7.1.0.11",
19081
- "rdsRef": "Services/WasteWaterSewarageDisposal",
19129
+ "rdsRef": "Services/WasteWaterSewerageDisposal",
19082
19130
  "ta6Ref": "12.4a",
19083
19131
  "con29DWRef": "2.1",
19084
19132
  "title": "Mains foul drainage / sewerage",
@@ -19117,6 +19165,13 @@
19117
19165
  },
19118
19166
  "con29DWRequired": ["details"]
19119
19167
  },
19168
+ {
19169
+ "properties": {
19170
+ "yesNo": {
19171
+ "enum": ["Not known"]
19172
+ }
19173
+ }
19174
+ },
19120
19175
  {
19121
19176
  "properties": {
19122
19177
  "yesNo": {
@@ -19140,107 +19195,252 @@
19140
19195
  {
19141
19196
  "properties": {
19142
19197
  "yesNo": {
19143
- "enum": ["No", "Not known"]
19198
+ "enum": ["No"]
19144
19199
  },
19145
- "sustainableDrainageSystem": {
19200
+ "offMainsDrainageSystem": {
19146
19201
  "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",
19202
+ "baspiRef": "A7.1.10.13",
19203
+ "ta6Ref": "12.4a",
19150
19204
  "type": "object",
19205
+ "baspiRequired": [
19206
+ "offMainsDrainageSystemType",
19207
+ "otherConnectedProperties",
19208
+ "plantOnOtherLand",
19209
+ "plantRegistered",
19210
+ "plantDrainsIntoWaterway"
19211
+ ],
19212
+ "ntsRequired": ["offMainsDrainageSystemType"],
19213
+ "ta6Required": [
19214
+ "offMainsDrainageSystemType",
19215
+ "otherConnectedProperties",
19216
+ "plantOnOtherLand"
19217
+ ],
19151
19218
  "properties": {
19152
- "yesNo": {
19219
+ "offMainsDrainageSystemType": {
19153
19220
  "ntsRef": "A3.3.3.1",
19154
- "baspiRef": "A7.1.0.13.1",
19221
+ "baspiRef": "A7.",
19155
19222
  "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
- {
19223
+ "enum": [
19224
+ "Sustainable Drainage System",
19225
+ "Septic tank",
19226
+ "Cesspit",
19227
+ "Sewerage treatment plant"
19228
+ ]
19229
+ },
19230
+ "otherConnectedProperties": {
19231
+ "baspiRef": "A7.1.1",
19232
+ "rdsRef": "Services/OtherServices/SharedWith",
19233
+ "ta6Ref": "12.6",
19234
+ "piqRef": "A7.1.29",
19235
+ "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
19236
+ "type": "object",
19168
19237
  "properties": {
19169
19238
  "yesNo": {
19170
- "enum": ["No"]
19239
+ "baspiRef": "A7.1.1.1",
19240
+ "ta6Ref": "12.6.1",
19241
+ "type": "string",
19242
+ "title": "",
19243
+ "enum": ["Yes", "No"]
19171
19244
  }
19172
- }
19245
+ },
19246
+ "baspiRequired": ["yesNo"],
19247
+ "ta6Required": ["yesNo"],
19248
+ "discriminator": {
19249
+ "propertyName": "yesNo"
19250
+ },
19251
+ "oneOf": [
19252
+ {
19253
+ "properties": {
19254
+ "yesNo": {
19255
+ "enum": ["No"]
19256
+ }
19257
+ }
19258
+ },
19259
+ {
19260
+ "properties": {
19261
+ "yesNo": {
19262
+ "enum": ["Yes"]
19263
+ },
19264
+ "numberOfPropertiesSharing": {
19265
+ "baspiRef": "A7.1.1.1",
19266
+ "ta6Ref": "12.6.2",
19267
+ "title": "How many other properties?",
19268
+ "type": "integer"
19269
+ },
19270
+ "details": {
19271
+ "baspiRef": "A7.1.1.2",
19272
+ "title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for",
19273
+ "type": "string",
19274
+ "minLength": 1
19275
+ }
19276
+ },
19277
+ "baspiRequired": [
19278
+ "numberOfPropertiesSharing",
19279
+ "details"
19280
+ ],
19281
+ "ta6Required": [
19282
+ "numberOfPropertiesSharing"
19283
+ ]
19284
+ }
19285
+ ]
19173
19286
  },
19174
- {
19287
+ "plantOnOtherLand": {
19288
+ "baspiRef": "A7.1.2",
19289
+ "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
19290
+ "ta6Ref": "12.10",
19291
+ "piqRef": "A7.1.30",
19292
+ "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
19293
+ "type": "object",
19175
19294
  "properties": {
19176
19295
  "yesNo": {
19177
- "enum": ["Yes"]
19296
+ "baspiRef": "7.1.2.1",
19297
+ "ta6Ref": "12.10.1",
19298
+ "type": "string",
19299
+ "title": "",
19300
+ "enum": ["Yes", "No"]
19301
+ }
19302
+ },
19303
+ "baspiRequired": ["yesNo"],
19304
+ "discriminator": {
19305
+ "propertyName": "yesNo"
19306
+ },
19307
+ "oneOf": [
19308
+ {
19309
+ "properties": {
19310
+ "yesNo": {
19311
+ "enum": ["No"]
19312
+ }
19313
+ }
19178
19314
  },
19179
- "supplier": {
19180
- "baspiRef": "A7.1.0.13.3",
19181
- "title": "Supplier",
19182
- "type": "string"
19315
+ {
19316
+ "properties": {
19317
+ "yesNo": {
19318
+ "enum": ["Yes"]
19319
+ },
19320
+ "attachments": {
19321
+ "baspiRef": "7.1.2.2",
19322
+ "ta6Ref": "12.10.2",
19323
+ "title": "Please supply a plan showing the location of the system and how access is obtained.",
19324
+ "type": "string",
19325
+ "enum": ["Attached", "To follow"]
19326
+ }
19327
+ },
19328
+ "baspiRequired": ["attachments"],
19329
+ "ta6Required": ["attachments"]
19183
19330
  }
19184
- }
19331
+ ],
19332
+ "ta6Required": ["yesNo"]
19185
19333
  },
19186
- {
19334
+ "plantRegistered": {
19335
+ "baspiRef": "A7.1.3",
19336
+ "rdsRef": "Services/OtherServices/Certificates",
19337
+ "piqRef": "A7.1.31",
19338
+ "title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
19339
+ "type": "object",
19187
19340
  "properties": {
19188
19341
  "yesNo": {
19189
- "enum": ["To be connected"]
19190
- },
19191
- "dateToBeConnected": {
19192
- "baspiRef": "A7.1.0.13.2",
19193
- "title": "Date to be connected",
19342
+ "baspiRef": "A7.1.3.1",
19194
19343
  "type": "string",
19195
- "format": "date"
19344
+ "title": "",
19345
+ "enum": ["Yes", "No"]
19346
+ }
19347
+ },
19348
+ "baspiRequired": ["yesNo"],
19349
+ "discriminator": {
19350
+ "propertyName": "yesNo"
19351
+ },
19352
+ "oneOf": [
19353
+ {
19354
+ "properties": {
19355
+ "yesNo": {
19356
+ "enum": ["No"]
19357
+ }
19358
+ }
19196
19359
  },
19197
- "supplier": {
19198
- "baspiRef": "A7.1.0.13.3",
19199
- "title": "Supplier",
19200
- "type": "string"
19360
+ {
19361
+ "properties": {
19362
+ "yesNo": {
19363
+ "enum": ["Yes"]
19364
+ },
19365
+ "attachments": {
19366
+ "baspiRef": "A7.1.3.2",
19367
+ "title": "Please supply the appropriate permit to discharge or exemption certificate",
19368
+ "type": "string",
19369
+ "enum": ["Attached", "To follow"]
19370
+ }
19371
+ },
19372
+ "baspiRequired": ["attachments"]
19373
+ }
19374
+ ]
19375
+ },
19376
+ "plantDrainsIntoWaterway": {
19377
+ "baspiRef": "A7.1.4",
19378
+ "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
19379
+ "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
19380
+ "type": "object",
19381
+ "properties": {
19382
+ "yesNo": {
19383
+ "baspiRef": "A7.1.4.1",
19384
+ "type": "string",
19385
+ "title": "",
19386
+ "enum": [
19387
+ "Yes",
19388
+ "No, the effluent is discharged through a soakaway system."
19389
+ ]
19201
19390
  }
19202
19391
  },
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"]
19392
+ "baspiRequired": ["yesNo"],
19393
+ "discriminator": {
19394
+ "propertyName": "yesNo"
19395
+ },
19396
+ "oneOf": [
19397
+ {
19398
+ "properties": {
19399
+ "yesNo": {
19400
+ "enum": [
19401
+ "No, the effluent is discharged through a soakaway system."
19402
+ ]
19403
+ }
19404
+ }
19405
+ },
19406
+ {
19407
+ "properties": {
19408
+ "yesNo": {
19409
+ "enum": ["Yes"]
19410
+ },
19411
+ "dischargeCompliesWithGBR": {
19412
+ "baspiRef": "A7.1.4.1",
19413
+ "rdsRef": "Services/OtherServices/ExternalConnections/Flags",
19414
+ "title": "Does it comply with the General Binding Rules for discharge into a waterway?",
19415
+ "type": "string",
19416
+ "enum": [
19417
+ "Yes",
19418
+ "No, it does not comply with the rules for discharge into a waterway."
19419
+ ]
19420
+ }
19421
+ },
19422
+ "baspiRequired": [
19423
+ "dischargeCompliesWithGBR"
19424
+ ]
19425
+ }
19426
+ ]
19226
19427
  }
19227
19428
  },
19228
-
19229
19429
  "discriminator": {
19230
- "propertyName": "yesNo"
19430
+ "propertyName": "offMainsDrainageSystemType"
19231
19431
  },
19232
19432
  "oneOf": [
19233
19433
  {
19234
19434
  "properties": {
19235
- "yesNo": {
19236
- "enum": ["No"]
19435
+ "offMainsDrainageSystemType": {
19436
+ "enum": ["Sustainable Drainage System"]
19237
19437
  }
19238
19438
  }
19239
19439
  },
19240
19440
  {
19241
19441
  "properties": {
19242
- "yesNo": {
19243
- "enum": ["Yes"]
19442
+ "offMainsDrainageSystemType": {
19443
+ "enum": ["Septic tank"]
19244
19444
  },
19245
19445
  "dateReplaced": {
19246
19446
  "baspiRef": "A7.1.0.14.2",
@@ -19266,46 +19466,11 @@
19266
19466
  "dateReplaced",
19267
19467
  "dateLastEmptied"
19268
19468
  ]
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
19469
  },
19305
19470
  {
19306
19471
  "properties": {
19307
- "yesNo": {
19308
- "enum": ["Yes"]
19472
+ "offMainsDrainageSystemType": {
19473
+ "enum": ["Cesspit"]
19309
19474
  },
19310
19475
  "dateLastEmptied": {
19311
19476
  "baspiRef": "A7.1.0.15.2",
@@ -19318,46 +19483,11 @@
19318
19483
  },
19319
19484
  "baspiRequired": ["dateLastEmptied"],
19320
19485
  "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
19486
  },
19357
19487
  {
19358
19488
  "properties": {
19359
- "yesNo": {
19360
- "enum": ["Yes"]
19489
+ "offMainsDrainageSystemType": {
19490
+ "enum": ["Sewerage treatment plant"]
19361
19491
  },
19362
19492
  "dateInstalled": {
19363
19493
  "baspiRef": "A7.1.0.16.2",
@@ -19395,225 +19525,8 @@
19395
19525
  ]
19396
19526
  }
19397
19527
  ]
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
19528
  }
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
- ]
19529
+ }
19617
19530
  }
19618
19531
  ]
19619
19532
  },
@@ -21051,6 +20964,7 @@
21051
20964
  "ta6Ref": "8.6",
21052
20965
  "piqRef": "A10.4",
21053
20966
  "title": "A public right of way through and/or across your property, buildings or land",
20967
+ "ntsTitle": "Is there a public right of way through and/or across your house, buildings or land?",
21054
20968
  "type": "object",
21055
20969
  "properties": {
21056
20970
  "yesNo": {
@@ -21457,13 +21371,12 @@
21457
21371
  "ta6Ref": "7.1.0",
21458
21372
  "title": "Flooding",
21459
21373
  "type": "object",
21460
- "baspiRequired": ["floodRisk", "hasBeenFlooded"],
21374
+ "baspiRequired": ["hasBeenFlooded"],
21461
21375
  "ntsRequired": ["floodRisk", "hasBeenFlooded"],
21462
21376
  "ta6Required": ["hasBeenFlooded"],
21463
21377
  "properties": {
21464
21378
  "floodRisk": {
21465
21379
  "ntsRef": "C3.1.1.1",
21466
- "baspiRef": "A11.1.1",
21467
21380
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
21468
21381
  "piqRef": "A11.1.1",
21469
21382
  "title": "Flood Risk",