@pdtf/schemas 3.6.0-10 → 3.6.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.
- package/.claude/settings.local.json +16 -2
- package/index.js +80 -58
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +6089 -1239
- package/src/schemas/v3/compactSkeleton.txt +269 -3
- package/src/schemas/v3/overlays/baspi4.json +150 -17
- package/src/schemas/v3/overlays/baspi5.json +153 -17
- package/src/schemas/v3/overlays/fme1.json +16 -14
- package/src/schemas/v3/overlays/lpe1.json +48 -30
- package/src/schemas/v3/overlays/nts.json +68 -1
- package/src/schemas/v3/overlays/nts2.json +68 -1
- package/src/schemas/v3/overlays/ntsl.json +68 -1
- package/src/schemas/v3/overlays/ntsl2.json +68 -1
- package/src/schemas/v3/overlays/piq.json +37 -3
- package/src/schemas/v3/overlays/rds.json +117 -8
- package/src/schemas/v3/overlays/ta6.json +28 -10
- package/src/schemas/v3/overlays/ta6ed6.json +5812 -0
- package/src/schemas/v3/overlays/ta7.json +43 -3
- package/src/schemas/v3/overlays/ta7ed5.json +1551 -0
- package/src/schemas/v3/pdtf-transaction.json +2971 -399
- package/src/schemas/v3/skeleton.json +353 -21
- package/src/tests/v3/ta6ed6.test.js +2314 -0
- package/src/tests/v3/ta7ed5.test.js +567 -0
- package/src/utils/extractOverlay.js +76 -10
- package/src/utils/pathSkeleton.js +1 -1
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"properties": {
|
|
18
18
|
"role": {
|
|
19
19
|
"enum": [
|
|
20
|
-
"Seller's Conveyancer",
|
|
21
20
|
"Prospective Buyer",
|
|
22
21
|
"Buyer's Conveyancer",
|
|
22
|
+
"Seller's Conveyancer",
|
|
23
23
|
"Estate Agent",
|
|
24
24
|
"Buyer's Agent",
|
|
25
25
|
"Surveyor",
|
|
@@ -75,8 +75,6 @@
|
|
|
75
75
|
"enum": [
|
|
76
76
|
"Personal Representative for a Deceased Owner",
|
|
77
77
|
"Under Power of Attorney",
|
|
78
|
-
"Company Director",
|
|
79
|
-
"Company Secretary",
|
|
80
78
|
"Trustee",
|
|
81
79
|
"Assistant",
|
|
82
80
|
"Other"
|
|
@@ -93,6 +91,26 @@
|
|
|
93
91
|
"sellersCapacityDetails",
|
|
94
92
|
"attachments"
|
|
95
93
|
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"properties": {
|
|
97
|
+
"capacity": {
|
|
98
|
+
"enum": [
|
|
99
|
+
"Company Director",
|
|
100
|
+
"Company Secretary"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"sellersCapacityDetails": {
|
|
104
|
+
"baspi4Ref": "B1.3.2"
|
|
105
|
+
},
|
|
106
|
+
"attachments": {
|
|
107
|
+
"baspi4Ref": "B1.3.3"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"required": [
|
|
111
|
+
"sellersCapacityDetails",
|
|
112
|
+
"attachments"
|
|
113
|
+
]
|
|
96
114
|
}
|
|
97
115
|
],
|
|
98
116
|
"required": [
|
|
@@ -1155,6 +1173,29 @@
|
|
|
1155
1173
|
},
|
|
1156
1174
|
"electricVehicleChargingPoint": {
|
|
1157
1175
|
"baspi4Ref": "A1.6.1",
|
|
1176
|
+
"discriminator": {
|
|
1177
|
+
"propertyName": "yesNo"
|
|
1178
|
+
},
|
|
1179
|
+
"oneOf": [
|
|
1180
|
+
{
|
|
1181
|
+
"properties": {
|
|
1182
|
+
"yesNo": {
|
|
1183
|
+
"enum": [
|
|
1184
|
+
"No"
|
|
1185
|
+
]
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"properties": {
|
|
1191
|
+
"yesNo": {
|
|
1192
|
+
"enum": [
|
|
1193
|
+
"Yes"
|
|
1194
|
+
]
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
],
|
|
1158
1199
|
"required": [
|
|
1159
1200
|
"yesNo"
|
|
1160
1201
|
],
|
|
@@ -3267,13 +3308,20 @@
|
|
|
3267
3308
|
},
|
|
3268
3309
|
"managementPlanInPlace": {
|
|
3269
3310
|
"baspi4Ref": "A5.3.2"
|
|
3270
|
-
},
|
|
3271
|
-
"attachments": {
|
|
3272
|
-
"baspi4Ref": "A5.3.3"
|
|
3273
3311
|
}
|
|
3274
3312
|
},
|
|
3275
3313
|
"required": [
|
|
3276
3314
|
"managementPlanInPlace"
|
|
3315
|
+
],
|
|
3316
|
+
"oneOf": [
|
|
3317
|
+
null,
|
|
3318
|
+
{
|
|
3319
|
+
"properties": {
|
|
3320
|
+
"attachments": {
|
|
3321
|
+
"baspi4Ref": "A5.3.3"
|
|
3322
|
+
}
|
|
3323
|
+
}
|
|
3324
|
+
}
|
|
3277
3325
|
]
|
|
3278
3326
|
}
|
|
3279
3327
|
],
|
|
@@ -3708,9 +3756,6 @@
|
|
|
3708
3756
|
}
|
|
3709
3757
|
}
|
|
3710
3758
|
},
|
|
3711
|
-
"isConnectedToNationalGrid": {
|
|
3712
|
-
"baspi4Ref": "B4.3.6"
|
|
3713
|
-
},
|
|
3714
3759
|
"photovoltaicMeterPanelLocation": {
|
|
3715
3760
|
"baspi4Ref": "B4.7",
|
|
3716
3761
|
"properties": {
|
|
@@ -3722,14 +3767,72 @@
|
|
|
3722
3767
|
}
|
|
3723
3768
|
}
|
|
3724
3769
|
},
|
|
3725
|
-
"
|
|
3770
|
+
"photovoltaicBatteries": {
|
|
3726
3771
|
"baspi4Ref": "B4.8",
|
|
3727
|
-
"
|
|
3728
|
-
"
|
|
3729
|
-
|
|
3772
|
+
"discriminator": {
|
|
3773
|
+
"propertyName": "yesNo"
|
|
3774
|
+
},
|
|
3775
|
+
"oneOf": [
|
|
3776
|
+
{
|
|
3777
|
+
"properties": {
|
|
3778
|
+
"yesNo": {
|
|
3779
|
+
"enum": [
|
|
3780
|
+
"No"
|
|
3781
|
+
]
|
|
3782
|
+
}
|
|
3783
|
+
}
|
|
3730
3784
|
},
|
|
3731
|
-
|
|
3732
|
-
"
|
|
3785
|
+
{
|
|
3786
|
+
"properties": {
|
|
3787
|
+
"yesNo": {
|
|
3788
|
+
"enum": [
|
|
3789
|
+
"Yes"
|
|
3790
|
+
]
|
|
3791
|
+
},
|
|
3792
|
+
"description": {
|
|
3793
|
+
"baspi4Ref": "4.8.1"
|
|
3794
|
+
},
|
|
3795
|
+
"attachments": {
|
|
3796
|
+
"baspi4Ref": "4.8.2"
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
"required": [
|
|
3800
|
+
"description"
|
|
3801
|
+
]
|
|
3802
|
+
}
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
3805
|
+
"nationalGrid": {
|
|
3806
|
+
"baspi4Ref": "B4.3.6",
|
|
3807
|
+
"discriminator": {
|
|
3808
|
+
"propertyName": "yesNo"
|
|
3809
|
+
},
|
|
3810
|
+
"oneOf": [
|
|
3811
|
+
{
|
|
3812
|
+
"properties": {
|
|
3813
|
+
"yesNo": {
|
|
3814
|
+
"enum": [
|
|
3815
|
+
"No"
|
|
3816
|
+
]
|
|
3817
|
+
}
|
|
3818
|
+
}
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"properties": {
|
|
3822
|
+
"yesNo": {
|
|
3823
|
+
"enum": [
|
|
3824
|
+
"Yes"
|
|
3825
|
+
]
|
|
3826
|
+
}
|
|
3827
|
+
}
|
|
3828
|
+
}
|
|
3829
|
+
],
|
|
3830
|
+
"required": [
|
|
3831
|
+
"yesNo"
|
|
3832
|
+
],
|
|
3833
|
+
"properties": {
|
|
3834
|
+
"yesNo": {
|
|
3835
|
+
"baspi4Ref": "B4.3.6"
|
|
3733
3836
|
}
|
|
3734
3837
|
}
|
|
3735
3838
|
}
|
|
@@ -3740,7 +3843,7 @@
|
|
|
3740
3843
|
"panelProviderLease",
|
|
3741
3844
|
"lastMaintained",
|
|
3742
3845
|
"inGoodWorkingOrder",
|
|
3743
|
-
"
|
|
3846
|
+
"nationalGrid"
|
|
3744
3847
|
]
|
|
3745
3848
|
},
|
|
3746
3849
|
{
|
|
@@ -4811,6 +4914,32 @@
|
|
|
4811
4914
|
},
|
|
4812
4915
|
"broadband": {
|
|
4813
4916
|
"baspi4Ref": "A7.1.0.7",
|
|
4917
|
+
"discriminator": {
|
|
4918
|
+
"propertyName": "typeOfConnection"
|
|
4919
|
+
},
|
|
4920
|
+
"oneOf": [
|
|
4921
|
+
{
|
|
4922
|
+
"properties": {
|
|
4923
|
+
"typeOfConnection": {
|
|
4924
|
+
"enum": [
|
|
4925
|
+
"None"
|
|
4926
|
+
]
|
|
4927
|
+
}
|
|
4928
|
+
}
|
|
4929
|
+
},
|
|
4930
|
+
{
|
|
4931
|
+
"properties": {
|
|
4932
|
+
"typeOfConnection": {
|
|
4933
|
+
"enum": [
|
|
4934
|
+
"ADSL copper wire",
|
|
4935
|
+
"Cable",
|
|
4936
|
+
"FTTC (Fibre to the Cabinet)",
|
|
4937
|
+
"FTTP (Fibre to the Premises)"
|
|
4938
|
+
]
|
|
4939
|
+
}
|
|
4940
|
+
}
|
|
4941
|
+
}
|
|
4942
|
+
],
|
|
4814
4943
|
"properties": {
|
|
4815
4944
|
"typeOfConnection": {
|
|
4816
4945
|
"baspi4Ref": "A7.1.0.7.2"
|
|
@@ -5703,7 +5832,11 @@
|
|
|
5703
5832
|
],
|
|
5704
5833
|
"properties": {
|
|
5705
5834
|
"yesNo": {
|
|
5706
|
-
"baspi4Ref": "A11.1.3.1"
|
|
5835
|
+
"baspi4Ref": "A11.1.3.1",
|
|
5836
|
+
"enum": [
|
|
5837
|
+
"Yes",
|
|
5838
|
+
"No"
|
|
5839
|
+
]
|
|
5707
5840
|
}
|
|
5708
5841
|
}
|
|
5709
5842
|
},
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"properties": {
|
|
18
18
|
"role": {
|
|
19
19
|
"enum": [
|
|
20
|
-
"Seller's Conveyancer",
|
|
21
20
|
"Prospective Buyer",
|
|
22
21
|
"Buyer's Conveyancer",
|
|
22
|
+
"Seller's Conveyancer",
|
|
23
23
|
"Estate Agent",
|
|
24
24
|
"Buyer's Agent",
|
|
25
25
|
"Surveyor",
|
|
@@ -75,8 +75,6 @@
|
|
|
75
75
|
"enum": [
|
|
76
76
|
"Personal Representative for a Deceased Owner",
|
|
77
77
|
"Under Power of Attorney",
|
|
78
|
-
"Company Director",
|
|
79
|
-
"Company Secretary",
|
|
80
78
|
"Trustee",
|
|
81
79
|
"Assistant",
|
|
82
80
|
"Other"
|
|
@@ -93,6 +91,26 @@
|
|
|
93
91
|
"sellersCapacityDetails",
|
|
94
92
|
"attachments"
|
|
95
93
|
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"properties": {
|
|
97
|
+
"capacity": {
|
|
98
|
+
"enum": [
|
|
99
|
+
"Company Director",
|
|
100
|
+
"Company Secretary"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"sellersCapacityDetails": {
|
|
104
|
+
"baspi5Ref": "B1.3.2"
|
|
105
|
+
},
|
|
106
|
+
"attachments": {
|
|
107
|
+
"baspi5Ref": "B1.3.3"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"required": [
|
|
111
|
+
"sellersCapacityDetails",
|
|
112
|
+
"attachments"
|
|
113
|
+
]
|
|
96
114
|
}
|
|
97
115
|
],
|
|
98
116
|
"required": [
|
|
@@ -1303,6 +1321,29 @@
|
|
|
1303
1321
|
},
|
|
1304
1322
|
"electricVehicleChargingPoint": {
|
|
1305
1323
|
"baspi5Ref": "A1.6.1",
|
|
1324
|
+
"discriminator": {
|
|
1325
|
+
"propertyName": "yesNo"
|
|
1326
|
+
},
|
|
1327
|
+
"oneOf": [
|
|
1328
|
+
{
|
|
1329
|
+
"properties": {
|
|
1330
|
+
"yesNo": {
|
|
1331
|
+
"enum": [
|
|
1332
|
+
"No"
|
|
1333
|
+
]
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"properties": {
|
|
1339
|
+
"yesNo": {
|
|
1340
|
+
"enum": [
|
|
1341
|
+
"Yes"
|
|
1342
|
+
]
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
],
|
|
1306
1347
|
"required": [
|
|
1307
1348
|
"yesNo"
|
|
1308
1349
|
],
|
|
@@ -3418,13 +3459,20 @@
|
|
|
3418
3459
|
},
|
|
3419
3460
|
"managementPlanInPlace": {
|
|
3420
3461
|
"baspi5Ref": "A5.3.2"
|
|
3421
|
-
},
|
|
3422
|
-
"attachments": {
|
|
3423
|
-
"baspi5Ref": "A5.3.3"
|
|
3424
3462
|
}
|
|
3425
3463
|
},
|
|
3426
3464
|
"required": [
|
|
3427
3465
|
"managementPlanInPlace"
|
|
3466
|
+
],
|
|
3467
|
+
"oneOf": [
|
|
3468
|
+
null,
|
|
3469
|
+
{
|
|
3470
|
+
"properties": {
|
|
3471
|
+
"attachments": {
|
|
3472
|
+
"baspi5Ref": "A5.3.3"
|
|
3473
|
+
}
|
|
3474
|
+
}
|
|
3475
|
+
}
|
|
3428
3476
|
]
|
|
3429
3477
|
}
|
|
3430
3478
|
],
|
|
@@ -3859,9 +3907,6 @@
|
|
|
3859
3907
|
}
|
|
3860
3908
|
}
|
|
3861
3909
|
},
|
|
3862
|
-
"isConnectedToNationalGrid": {
|
|
3863
|
-
"baspi5Ref": "B4.3.6"
|
|
3864
|
-
},
|
|
3865
3910
|
"photovoltaicMeterPanelLocation": {
|
|
3866
3911
|
"baspi5Ref": "B4.7",
|
|
3867
3912
|
"properties": {
|
|
@@ -3873,14 +3918,72 @@
|
|
|
3873
3918
|
}
|
|
3874
3919
|
}
|
|
3875
3920
|
},
|
|
3876
|
-
"
|
|
3921
|
+
"photovoltaicBatteries": {
|
|
3877
3922
|
"baspi5Ref": "B4.8",
|
|
3878
|
-
"
|
|
3879
|
-
"
|
|
3880
|
-
|
|
3923
|
+
"discriminator": {
|
|
3924
|
+
"propertyName": "yesNo"
|
|
3925
|
+
},
|
|
3926
|
+
"oneOf": [
|
|
3927
|
+
{
|
|
3928
|
+
"properties": {
|
|
3929
|
+
"yesNo": {
|
|
3930
|
+
"enum": [
|
|
3931
|
+
"No"
|
|
3932
|
+
]
|
|
3933
|
+
}
|
|
3934
|
+
}
|
|
3881
3935
|
},
|
|
3882
|
-
|
|
3883
|
-
"
|
|
3936
|
+
{
|
|
3937
|
+
"properties": {
|
|
3938
|
+
"yesNo": {
|
|
3939
|
+
"enum": [
|
|
3940
|
+
"Yes"
|
|
3941
|
+
]
|
|
3942
|
+
},
|
|
3943
|
+
"description": {
|
|
3944
|
+
"baspi5Ref": "4.8.1"
|
|
3945
|
+
},
|
|
3946
|
+
"attachments": {
|
|
3947
|
+
"baspi5Ref": "4.8.2"
|
|
3948
|
+
}
|
|
3949
|
+
},
|
|
3950
|
+
"required": [
|
|
3951
|
+
"description"
|
|
3952
|
+
]
|
|
3953
|
+
}
|
|
3954
|
+
]
|
|
3955
|
+
},
|
|
3956
|
+
"nationalGrid": {
|
|
3957
|
+
"baspi5Ref": "B4.3.6",
|
|
3958
|
+
"discriminator": {
|
|
3959
|
+
"propertyName": "yesNo"
|
|
3960
|
+
},
|
|
3961
|
+
"oneOf": [
|
|
3962
|
+
{
|
|
3963
|
+
"properties": {
|
|
3964
|
+
"yesNo": {
|
|
3965
|
+
"enum": [
|
|
3966
|
+
"No"
|
|
3967
|
+
]
|
|
3968
|
+
}
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
"properties": {
|
|
3973
|
+
"yesNo": {
|
|
3974
|
+
"enum": [
|
|
3975
|
+
"Yes"
|
|
3976
|
+
]
|
|
3977
|
+
}
|
|
3978
|
+
}
|
|
3979
|
+
}
|
|
3980
|
+
],
|
|
3981
|
+
"required": [
|
|
3982
|
+
"yesNo"
|
|
3983
|
+
],
|
|
3984
|
+
"properties": {
|
|
3985
|
+
"yesNo": {
|
|
3986
|
+
"baspi5Ref": "B4.3.6"
|
|
3884
3987
|
}
|
|
3885
3988
|
}
|
|
3886
3989
|
}
|
|
@@ -3891,7 +3994,7 @@
|
|
|
3891
3994
|
"panelProviderLease",
|
|
3892
3995
|
"lastMaintained",
|
|
3893
3996
|
"inGoodWorkingOrder",
|
|
3894
|
-
"
|
|
3997
|
+
"nationalGrid"
|
|
3895
3998
|
]
|
|
3896
3999
|
},
|
|
3897
4000
|
{
|
|
@@ -4962,6 +5065,32 @@
|
|
|
4962
5065
|
},
|
|
4963
5066
|
"broadband": {
|
|
4964
5067
|
"baspi5Ref": "A7.1.0.7",
|
|
5068
|
+
"discriminator": {
|
|
5069
|
+
"propertyName": "typeOfConnection"
|
|
5070
|
+
},
|
|
5071
|
+
"oneOf": [
|
|
5072
|
+
{
|
|
5073
|
+
"properties": {
|
|
5074
|
+
"typeOfConnection": {
|
|
5075
|
+
"enum": [
|
|
5076
|
+
"None"
|
|
5077
|
+
]
|
|
5078
|
+
}
|
|
5079
|
+
}
|
|
5080
|
+
},
|
|
5081
|
+
{
|
|
5082
|
+
"properties": {
|
|
5083
|
+
"typeOfConnection": {
|
|
5084
|
+
"enum": [
|
|
5085
|
+
"ADSL copper wire",
|
|
5086
|
+
"Cable",
|
|
5087
|
+
"FTTC (Fibre to the Cabinet)",
|
|
5088
|
+
"FTTP (Fibre to the Premises)"
|
|
5089
|
+
]
|
|
5090
|
+
}
|
|
5091
|
+
}
|
|
5092
|
+
}
|
|
5093
|
+
],
|
|
4965
5094
|
"properties": {
|
|
4966
5095
|
"typeOfConnection": {
|
|
4967
5096
|
"baspi5Ref": "A7.1.0.7.2"
|
|
@@ -5855,7 +5984,11 @@
|
|
|
5855
5984
|
],
|
|
5856
5985
|
"properties": {
|
|
5857
5986
|
"yesNo": {
|
|
5858
|
-
"baspi5Ref": "A11.1.3.1"
|
|
5987
|
+
"baspi5Ref": "A11.1.3.1",
|
|
5988
|
+
"enum": [
|
|
5989
|
+
"Yes",
|
|
5990
|
+
"No"
|
|
5991
|
+
]
|
|
5859
5992
|
}
|
|
5860
5993
|
}
|
|
5861
5994
|
},
|
|
@@ -5896,6 +6029,9 @@
|
|
|
5896
6029
|
}
|
|
5897
6030
|
}
|
|
5898
6031
|
}
|
|
6032
|
+
],
|
|
6033
|
+
"required": [
|
|
6034
|
+
"riskIndicator"
|
|
5899
6035
|
]
|
|
5900
6036
|
},
|
|
5901
6037
|
"otherEnvironmental": {
|
|
@@ -203,20 +203,22 @@
|
|
|
203
203
|
"contact",
|
|
204
204
|
"capacity"
|
|
205
205
|
],
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
206
|
+
"properties": {
|
|
207
|
+
"contact": {
|
|
208
|
+
"required": [
|
|
209
|
+
"nameOrOrganisation",
|
|
210
|
+
"line1",
|
|
211
|
+
"postcode",
|
|
212
|
+
"telephone",
|
|
213
|
+
"emailAddress"
|
|
214
|
+
],
|
|
215
|
+
"properties": {
|
|
216
|
+
"address": {
|
|
217
|
+
"required": [
|
|
218
|
+
"line1",
|
|
219
|
+
"postcode"
|
|
220
|
+
]
|
|
221
|
+
}
|
|
220
222
|
}
|
|
221
223
|
}
|
|
222
224
|
}
|
|
@@ -282,20 +282,22 @@
|
|
|
282
282
|
"contact",
|
|
283
283
|
"capacity"
|
|
284
284
|
],
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
|
|
298
|
-
|
|
285
|
+
"properties": {
|
|
286
|
+
"contact": {
|
|
287
|
+
"required": [
|
|
288
|
+
"nameOrOrganisation",
|
|
289
|
+
"line1",
|
|
290
|
+
"postcode",
|
|
291
|
+
"telephone",
|
|
292
|
+
"emailAddress"
|
|
293
|
+
],
|
|
294
|
+
"properties": {
|
|
295
|
+
"address": {
|
|
296
|
+
"required": [
|
|
297
|
+
"line1",
|
|
298
|
+
"postcode"
|
|
299
|
+
]
|
|
300
|
+
}
|
|
299
301
|
}
|
|
300
302
|
}
|
|
301
303
|
}
|
|
@@ -381,20 +383,22 @@
|
|
|
381
383
|
"contact",
|
|
382
384
|
"capacity"
|
|
383
385
|
],
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
"
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
|
|
397
|
-
|
|
386
|
+
"properties": {
|
|
387
|
+
"contact": {
|
|
388
|
+
"required": [
|
|
389
|
+
"nameOrOrganisation",
|
|
390
|
+
"line1",
|
|
391
|
+
"postcode",
|
|
392
|
+
"telephone",
|
|
393
|
+
"emailAddress"
|
|
394
|
+
],
|
|
395
|
+
"properties": {
|
|
396
|
+
"address": {
|
|
397
|
+
"required": [
|
|
398
|
+
"line1",
|
|
399
|
+
"postcode"
|
|
400
|
+
]
|
|
401
|
+
}
|
|
398
402
|
}
|
|
399
403
|
}
|
|
400
404
|
}
|
|
@@ -436,13 +440,27 @@
|
|
|
436
440
|
}
|
|
437
441
|
},
|
|
438
442
|
"collectsGroundRent": {
|
|
439
|
-
"
|
|
443
|
+
"required": [
|
|
444
|
+
"collector"
|
|
445
|
+
],
|
|
446
|
+
"properties": {
|
|
447
|
+
"collector": {
|
|
448
|
+
"lpe1Ref": "1.7"
|
|
449
|
+
}
|
|
450
|
+
}
|
|
440
451
|
},
|
|
441
452
|
"collectsServiceCharges": {
|
|
442
453
|
"lpe1Ref": "1.8"
|
|
443
454
|
},
|
|
444
455
|
"collectsbuildingInsurancePremiums": {
|
|
445
|
-
"
|
|
456
|
+
"required": [
|
|
457
|
+
"collector"
|
|
458
|
+
],
|
|
459
|
+
"properties": {
|
|
460
|
+
"collector": {
|
|
461
|
+
"lpe1Ref": "1.9"
|
|
462
|
+
}
|
|
463
|
+
}
|
|
446
464
|
},
|
|
447
465
|
"dealsWithDayToDayMaintenanceOfManagedArea": {
|
|
448
466
|
"lpe1Ref": "1.11"
|