@pdtf/schemas 3.0.0-20 → 3.0.0-21
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/examples/v3/exampleTransaction.json +14 -7
- package/src/schemas/v3/combined.json +407 -398
- package/src/schemas/v3/overlays/baspi.json +284 -254
- package/src/schemas/v3/overlays/nts.json +52 -5
- package/src/schemas/v3/overlays/piq.json +59 -90
- package/src/schemas/v3/overlays/rds.json +130 -122
- package/src/schemas/v3/overlays/ta6.json +224 -158
- package/src/schemas/v3/pdtf-transaction.json +362 -353
- package/src/schemas/v3/skeleton.json +44 -46
|
@@ -15698,6 +15698,30 @@
|
|
|
15698
15698
|
"supplier": {
|
|
15699
15699
|
"title": "Supplier",
|
|
15700
15700
|
"type": "string"
|
|
15701
|
+
},
|
|
15702
|
+
"electricityMeter": {
|
|
15703
|
+
"title": "Location of electricity meter",
|
|
15704
|
+
"type": "object",
|
|
15705
|
+
"properties": {
|
|
15706
|
+
"location": {
|
|
15707
|
+
"title": "Describe the location of the meter",
|
|
15708
|
+
"type": "string",
|
|
15709
|
+
"minLength": 1
|
|
15710
|
+
},
|
|
15711
|
+
"attachments": {
|
|
15712
|
+
"title": "Photograph of meter location",
|
|
15713
|
+
"type": "string",
|
|
15714
|
+
"enum": [
|
|
15715
|
+
"Attached",
|
|
15716
|
+
"To follow"
|
|
15717
|
+
]
|
|
15718
|
+
},
|
|
15719
|
+
"mpan": {
|
|
15720
|
+
"title": "Meter Point Administration Number (MPAN)",
|
|
15721
|
+
"description": "Your MPAN is on your electricity or dual fuel bill, usually in a box marked ‘Supply Number’. It’s 21 digits long and begins with ‘S’. You’ll only need the last 12 or 13 digits.",
|
|
15722
|
+
"type": "integer"
|
|
15723
|
+
}
|
|
15724
|
+
}
|
|
15701
15725
|
}
|
|
15702
15726
|
}
|
|
15703
15727
|
},
|
|
@@ -15755,6 +15779,195 @@
|
|
|
15755
15779
|
"supplier": {
|
|
15756
15780
|
"title": "Supplier",
|
|
15757
15781
|
"type": "string"
|
|
15782
|
+
},
|
|
15783
|
+
"yearInstalled": {
|
|
15784
|
+
"title": "What year were they installed?",
|
|
15785
|
+
"type": "integer"
|
|
15786
|
+
},
|
|
15787
|
+
"panelsOwnedOutright": {
|
|
15788
|
+
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
15789
|
+
"type": "object",
|
|
15790
|
+
"properties": {
|
|
15791
|
+
"yesNo": {
|
|
15792
|
+
"type": "string",
|
|
15793
|
+
"title": "",
|
|
15794
|
+
"enum": [
|
|
15795
|
+
"Yes",
|
|
15796
|
+
"No"
|
|
15797
|
+
]
|
|
15798
|
+
}
|
|
15799
|
+
},
|
|
15800
|
+
"oneOf": [
|
|
15801
|
+
{
|
|
15802
|
+
"properties": {
|
|
15803
|
+
"yesNo": {
|
|
15804
|
+
"enum": [
|
|
15805
|
+
"Yes"
|
|
15806
|
+
]
|
|
15807
|
+
}
|
|
15808
|
+
}
|
|
15809
|
+
},
|
|
15810
|
+
{
|
|
15811
|
+
"properties": {
|
|
15812
|
+
"yesNo": {
|
|
15813
|
+
"enum": [
|
|
15814
|
+
"No"
|
|
15815
|
+
]
|
|
15816
|
+
},
|
|
15817
|
+
"details": {
|
|
15818
|
+
"title": "Provide details of who owns them and the relevant documentation",
|
|
15819
|
+
"type": "string",
|
|
15820
|
+
"minLength": 1
|
|
15821
|
+
},
|
|
15822
|
+
"attachments": {
|
|
15823
|
+
"title": "Attachments",
|
|
15824
|
+
"type": "string",
|
|
15825
|
+
"enum": [
|
|
15826
|
+
"Attached",
|
|
15827
|
+
"To follow"
|
|
15828
|
+
]
|
|
15829
|
+
}
|
|
15830
|
+
}
|
|
15831
|
+
}
|
|
15832
|
+
]
|
|
15833
|
+
},
|
|
15834
|
+
"panelProviderLease": {
|
|
15835
|
+
"title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
|
|
15836
|
+
"type": "object",
|
|
15837
|
+
"properties": {
|
|
15838
|
+
"yesNo": {
|
|
15839
|
+
"type": "string",
|
|
15840
|
+
"title": "",
|
|
15841
|
+
"enum": [
|
|
15842
|
+
"Yes",
|
|
15843
|
+
"No"
|
|
15844
|
+
]
|
|
15845
|
+
}
|
|
15846
|
+
},
|
|
15847
|
+
"oneOf": [
|
|
15848
|
+
{
|
|
15849
|
+
"properties": {
|
|
15850
|
+
"yesNo": {
|
|
15851
|
+
"enum": [
|
|
15852
|
+
"No"
|
|
15853
|
+
]
|
|
15854
|
+
}
|
|
15855
|
+
}
|
|
15856
|
+
},
|
|
15857
|
+
{
|
|
15858
|
+
"properties": {
|
|
15859
|
+
"yesNo": {
|
|
15860
|
+
"enum": [
|
|
15861
|
+
"Yes"
|
|
15862
|
+
]
|
|
15863
|
+
},
|
|
15864
|
+
"details": {
|
|
15865
|
+
"title": "Name of the provider",
|
|
15866
|
+
"type": "string",
|
|
15867
|
+
"minLength": 1
|
|
15868
|
+
},
|
|
15869
|
+
"attachments": {
|
|
15870
|
+
"title": "Please supply copies of the relevant documents",
|
|
15871
|
+
"type": "string",
|
|
15872
|
+
"enum": [
|
|
15873
|
+
"Attached",
|
|
15874
|
+
"To follow"
|
|
15875
|
+
]
|
|
15876
|
+
}
|
|
15877
|
+
}
|
|
15878
|
+
}
|
|
15879
|
+
]
|
|
15880
|
+
},
|
|
15881
|
+
"lastMaintained": {
|
|
15882
|
+
"title": "When was the system last maintained or serviced?",
|
|
15883
|
+
"type": "string",
|
|
15884
|
+
"format": "date"
|
|
15885
|
+
},
|
|
15886
|
+
"inGoodWorkingOrder": {
|
|
15887
|
+
"title": "Is the system in good working order to your satisfaction?",
|
|
15888
|
+
"type": "object",
|
|
15889
|
+
"properties": {
|
|
15890
|
+
"yesNo": {
|
|
15891
|
+
"type": "string",
|
|
15892
|
+
"title": "",
|
|
15893
|
+
"enum": [
|
|
15894
|
+
"Yes",
|
|
15895
|
+
"No"
|
|
15896
|
+
]
|
|
15897
|
+
}
|
|
15898
|
+
},
|
|
15899
|
+
"oneOf": [
|
|
15900
|
+
{
|
|
15901
|
+
"properties": {
|
|
15902
|
+
"yesNo": {
|
|
15903
|
+
"enum": [
|
|
15904
|
+
"Yes"
|
|
15905
|
+
]
|
|
15906
|
+
}
|
|
15907
|
+
}
|
|
15908
|
+
},
|
|
15909
|
+
{
|
|
15910
|
+
"properties": {
|
|
15911
|
+
"yesNo": {
|
|
15912
|
+
"enum": [
|
|
15913
|
+
"No"
|
|
15914
|
+
]
|
|
15915
|
+
},
|
|
15916
|
+
"details": {
|
|
15917
|
+
"title": "Details",
|
|
15918
|
+
"type": "string",
|
|
15919
|
+
"minLength": 1
|
|
15920
|
+
}
|
|
15921
|
+
}
|
|
15922
|
+
}
|
|
15923
|
+
]
|
|
15924
|
+
},
|
|
15925
|
+
"isConnectedToNationalGrid": {
|
|
15926
|
+
"title": "Is the system connected to the National Grid e.g. for feed-in tariffs (FiT) or Smart Export Guarantee (SEG)",
|
|
15927
|
+
"type": "string",
|
|
15928
|
+
"enum": [
|
|
15929
|
+
"Yes (FiT)",
|
|
15930
|
+
"Yes (SEG)",
|
|
15931
|
+
"No"
|
|
15932
|
+
]
|
|
15933
|
+
},
|
|
15934
|
+
"photovoltaicMeterPanelLocation": {
|
|
15935
|
+
"title": "Location of photovoltaic panel meter (if any)",
|
|
15936
|
+
"type": "object",
|
|
15937
|
+
"properties": {
|
|
15938
|
+
"description": {
|
|
15939
|
+
"title": "Describe the location of the meter",
|
|
15940
|
+
"type": "string",
|
|
15941
|
+
"minLength": 1
|
|
15942
|
+
},
|
|
15943
|
+
"attachments": {
|
|
15944
|
+
"title": "Photograph of meter location",
|
|
15945
|
+
"type": "string",
|
|
15946
|
+
"enum": [
|
|
15947
|
+
"Attached",
|
|
15948
|
+
"To follow"
|
|
15949
|
+
]
|
|
15950
|
+
}
|
|
15951
|
+
}
|
|
15952
|
+
},
|
|
15953
|
+
"photovoltaicBatteriesLocation": {
|
|
15954
|
+
"title": "Location of photovoltaic batteries (if any)",
|
|
15955
|
+
"type": "object",
|
|
15956
|
+
"properties": {
|
|
15957
|
+
"description": {
|
|
15958
|
+
"title": "Describe the location of the batteries",
|
|
15959
|
+
"type": "string",
|
|
15960
|
+
"minLength": 1
|
|
15961
|
+
},
|
|
15962
|
+
"attachments": {
|
|
15963
|
+
"title": "Photograph of batteries location",
|
|
15964
|
+
"type": "string",
|
|
15965
|
+
"enum": [
|
|
15966
|
+
"Attached",
|
|
15967
|
+
"To follow"
|
|
15968
|
+
]
|
|
15969
|
+
}
|
|
15970
|
+
}
|
|
15758
15971
|
}
|
|
15759
15972
|
}
|
|
15760
15973
|
},
|
|
@@ -15917,46 +16130,103 @@
|
|
|
15917
16130
|
"type": "string",
|
|
15918
16131
|
"minLength": 1
|
|
15919
16132
|
},
|
|
15920
|
-
"
|
|
15921
|
-
"title": "
|
|
15922
|
-
"type": "
|
|
15923
|
-
"
|
|
15924
|
-
"
|
|
15925
|
-
|
|
15926
|
-
|
|
15927
|
-
|
|
15928
|
-
|
|
15929
|
-
|
|
15930
|
-
|
|
15931
|
-
|
|
15932
|
-
|
|
15933
|
-
|
|
15934
|
-
|
|
15935
|
-
|
|
15936
|
-
|
|
15937
|
-
|
|
15938
|
-
"title": "Date to be connected",
|
|
15939
|
-
"type": "string",
|
|
15940
|
-
"format": "date"
|
|
16133
|
+
"stopcock": {
|
|
16134
|
+
"title": "Location of stopcock",
|
|
16135
|
+
"type": "object",
|
|
16136
|
+
"properties": {
|
|
16137
|
+
"location": {
|
|
16138
|
+
"title": "Describe the location of the stopcock",
|
|
16139
|
+
"type": "string",
|
|
16140
|
+
"minLength": 1
|
|
16141
|
+
},
|
|
16142
|
+
"attachments": {
|
|
16143
|
+
"title": "Photograph of stopcock location",
|
|
16144
|
+
"type": "string",
|
|
16145
|
+
"enum": [
|
|
16146
|
+
"Attached",
|
|
16147
|
+
"To follow"
|
|
16148
|
+
]
|
|
16149
|
+
}
|
|
16150
|
+
}
|
|
15941
16151
|
},
|
|
15942
|
-
"
|
|
15943
|
-
"
|
|
15944
|
-
"
|
|
15945
|
-
|
|
15946
|
-
|
|
15947
|
-
|
|
15948
|
-
|
|
15949
|
-
|
|
15950
|
-
|
|
15951
|
-
|
|
15952
|
-
|
|
15953
|
-
|
|
15954
|
-
|
|
15955
|
-
|
|
15956
|
-
|
|
15957
|
-
|
|
15958
|
-
|
|
15959
|
-
|
|
16152
|
+
"waterMeter": {
|
|
16153
|
+
"type": "object",
|
|
16154
|
+
"properties": {
|
|
16155
|
+
"isSupplyMetered": {
|
|
16156
|
+
"title": "Is the supply metered?",
|
|
16157
|
+
"type": "string",
|
|
16158
|
+
"enum": [
|
|
16159
|
+
"Yes",
|
|
16160
|
+
"No"
|
|
16161
|
+
]
|
|
16162
|
+
}
|
|
16163
|
+
},
|
|
16164
|
+
"oneOf": [
|
|
16165
|
+
{
|
|
16166
|
+
"properties": {
|
|
16167
|
+
"isSupplyMetered": {
|
|
16168
|
+
"enum": [
|
|
16169
|
+
"No"
|
|
16170
|
+
]
|
|
16171
|
+
}
|
|
16172
|
+
}
|
|
16173
|
+
},
|
|
16174
|
+
{
|
|
16175
|
+
"properties": {
|
|
16176
|
+
"isSupplyMetered": {
|
|
16177
|
+
"enum": [
|
|
16178
|
+
"Yes"
|
|
16179
|
+
]
|
|
16180
|
+
},
|
|
16181
|
+
"location": {
|
|
16182
|
+
"title": "Describe the location of the meter",
|
|
16183
|
+
"type": "string",
|
|
16184
|
+
"minLength": 1
|
|
16185
|
+
},
|
|
16186
|
+
"attachments": {
|
|
16187
|
+
"title": "Photograph of meter location",
|
|
16188
|
+
"type": "string",
|
|
16189
|
+
"enum": [
|
|
16190
|
+
"Attached",
|
|
16191
|
+
"To follow"
|
|
16192
|
+
]
|
|
16193
|
+
}
|
|
16194
|
+
}
|
|
16195
|
+
}
|
|
16196
|
+
]
|
|
16197
|
+
}
|
|
16198
|
+
}
|
|
16199
|
+
},
|
|
16200
|
+
{
|
|
16201
|
+
"properties": {
|
|
16202
|
+
"yesNo": {
|
|
16203
|
+
"enum": [
|
|
16204
|
+
"To be connected"
|
|
16205
|
+
]
|
|
16206
|
+
},
|
|
16207
|
+
"dateToBeConnected": {
|
|
16208
|
+
"title": "Date to be connected",
|
|
16209
|
+
"type": "string",
|
|
16210
|
+
"format": "date"
|
|
16211
|
+
},
|
|
16212
|
+
"supplier": {
|
|
16213
|
+
"title": "Supplier",
|
|
16214
|
+
"type": "string"
|
|
16215
|
+
}
|
|
16216
|
+
}
|
|
16217
|
+
}
|
|
16218
|
+
]
|
|
16219
|
+
},
|
|
16220
|
+
"waterMainsWithinBoundaries": {
|
|
16221
|
+
"title": "Are there any water mains, resource mains or discharge pipes within the boundaries of the property?",
|
|
16222
|
+
"type": "object",
|
|
16223
|
+
"properties": {
|
|
16224
|
+
"yesNo": {
|
|
16225
|
+
"type": "string",
|
|
16226
|
+
"title": "",
|
|
16227
|
+
"enum": [
|
|
16228
|
+
"Yes",
|
|
16229
|
+
"No"
|
|
15960
16230
|
]
|
|
15961
16231
|
}
|
|
15962
16232
|
},
|
|
@@ -16932,12 +17202,60 @@
|
|
|
16932
17202
|
"properties": {
|
|
16933
17203
|
"centralHeatingFuelType": {
|
|
16934
17204
|
"enum": [
|
|
16935
|
-
"Mains gas"
|
|
16936
|
-
|
|
17205
|
+
"Mains gas"
|
|
17206
|
+
]
|
|
17207
|
+
},
|
|
17208
|
+
"supplier": {
|
|
17209
|
+
"title": "Supplier (if known)",
|
|
17210
|
+
"type": "string"
|
|
17211
|
+
},
|
|
17212
|
+
"gasMeter": {
|
|
17213
|
+
"title": "Location of gas meter (if any)",
|
|
17214
|
+
"type": "object",
|
|
17215
|
+
"properties": {
|
|
17216
|
+
"location": {
|
|
17217
|
+
"title": "Describe the location of the meter",
|
|
17218
|
+
"type": "string",
|
|
17219
|
+
"minLength": 1
|
|
17220
|
+
},
|
|
17221
|
+
"attachments": {
|
|
17222
|
+
"title": "Photograph of meter location",
|
|
17223
|
+
"type": "string",
|
|
17224
|
+
"enum": [
|
|
17225
|
+
"Attached",
|
|
17226
|
+
"To follow"
|
|
17227
|
+
]
|
|
17228
|
+
},
|
|
17229
|
+
"mprn": {
|
|
17230
|
+
"title": "Meter Point Reference Number (MPRN)",
|
|
17231
|
+
"description": "You can find your property’s MPRN on your gas or dual fuel bill. It’s usually marked ‘Meter Point Reference Number’ and is between six and 10 digits long.",
|
|
17232
|
+
"type": "integer"
|
|
17233
|
+
}
|
|
17234
|
+
}
|
|
17235
|
+
}
|
|
17236
|
+
}
|
|
17237
|
+
},
|
|
17238
|
+
{
|
|
17239
|
+
"properties": {
|
|
17240
|
+
"centralHeatingFuelType": {
|
|
17241
|
+
"enum": [
|
|
17242
|
+
"Electricity"
|
|
17243
|
+
]
|
|
17244
|
+
}
|
|
17245
|
+
}
|
|
17246
|
+
},
|
|
17247
|
+
{
|
|
17248
|
+
"properties": {
|
|
17249
|
+
"centralHeatingFuelType": {
|
|
17250
|
+
"enum": [
|
|
16937
17251
|
"Oil",
|
|
16938
17252
|
"LPG",
|
|
16939
17253
|
"Biomass"
|
|
16940
17254
|
]
|
|
17255
|
+
},
|
|
17256
|
+
"supplier": {
|
|
17257
|
+
"title": "Supplier (if known)",
|
|
17258
|
+
"type": "string"
|
|
16941
17259
|
}
|
|
16942
17260
|
}
|
|
16943
17261
|
},
|
|
@@ -20509,8 +20827,8 @@
|
|
|
20509
20827
|
}
|
|
20510
20828
|
}
|
|
20511
20829
|
},
|
|
20512
|
-
"
|
|
20513
|
-
"title": "
|
|
20830
|
+
"electricalWorks": {
|
|
20831
|
+
"title": "Electrical Works",
|
|
20514
20832
|
"type": "object",
|
|
20515
20833
|
"properties": {
|
|
20516
20834
|
"testedByQualifiedElectrician": {
|
|
@@ -20627,315 +20945,6 @@
|
|
|
20627
20945
|
}
|
|
20628
20946
|
}
|
|
20629
20947
|
]
|
|
20630
|
-
},
|
|
20631
|
-
"solarPanels": {
|
|
20632
|
-
"title": "Solar or photovoltaic panels",
|
|
20633
|
-
"type": "object",
|
|
20634
|
-
"properties": {
|
|
20635
|
-
"hasSolarPanels": {
|
|
20636
|
-
"title": "Are there solar or photovoltaic panels installed at the property?",
|
|
20637
|
-
"type": "string",
|
|
20638
|
-
"enum": [
|
|
20639
|
-
"Yes",
|
|
20640
|
-
"No"
|
|
20641
|
-
]
|
|
20642
|
-
}
|
|
20643
|
-
},
|
|
20644
|
-
"oneOf": [
|
|
20645
|
-
{
|
|
20646
|
-
"properties": {
|
|
20647
|
-
"hasSolarPanels": {
|
|
20648
|
-
"enum": [
|
|
20649
|
-
"No"
|
|
20650
|
-
]
|
|
20651
|
-
}
|
|
20652
|
-
}
|
|
20653
|
-
},
|
|
20654
|
-
{
|
|
20655
|
-
"properties": {
|
|
20656
|
-
"hasSolarPanels": {
|
|
20657
|
-
"enum": [
|
|
20658
|
-
"Yes"
|
|
20659
|
-
]
|
|
20660
|
-
},
|
|
20661
|
-
"yearInstalled": {
|
|
20662
|
-
"title": "What year were they installed?",
|
|
20663
|
-
"type": "integer"
|
|
20664
|
-
},
|
|
20665
|
-
"panelsOwnedOutright": {
|
|
20666
|
-
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
20667
|
-
"type": "object",
|
|
20668
|
-
"properties": {
|
|
20669
|
-
"yesNo": {
|
|
20670
|
-
"type": "string",
|
|
20671
|
-
"title": "",
|
|
20672
|
-
"enum": [
|
|
20673
|
-
"Yes",
|
|
20674
|
-
"No"
|
|
20675
|
-
]
|
|
20676
|
-
}
|
|
20677
|
-
},
|
|
20678
|
-
"oneOf": [
|
|
20679
|
-
{
|
|
20680
|
-
"properties": {
|
|
20681
|
-
"yesNo": {
|
|
20682
|
-
"enum": [
|
|
20683
|
-
"Yes"
|
|
20684
|
-
]
|
|
20685
|
-
}
|
|
20686
|
-
}
|
|
20687
|
-
},
|
|
20688
|
-
{
|
|
20689
|
-
"properties": {
|
|
20690
|
-
"yesNo": {
|
|
20691
|
-
"enum": [
|
|
20692
|
-
"No"
|
|
20693
|
-
]
|
|
20694
|
-
},
|
|
20695
|
-
"details": {
|
|
20696
|
-
"title": "Provide details of who owns them and the relevant documentation",
|
|
20697
|
-
"type": "string",
|
|
20698
|
-
"minLength": 1
|
|
20699
|
-
},
|
|
20700
|
-
"attachments": {
|
|
20701
|
-
"title": "Attachments",
|
|
20702
|
-
"type": "string",
|
|
20703
|
-
"enum": [
|
|
20704
|
-
"Attached",
|
|
20705
|
-
"To follow"
|
|
20706
|
-
]
|
|
20707
|
-
}
|
|
20708
|
-
}
|
|
20709
|
-
}
|
|
20710
|
-
]
|
|
20711
|
-
},
|
|
20712
|
-
"panelProviderLease": {
|
|
20713
|
-
"title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
|
|
20714
|
-
"type": "object",
|
|
20715
|
-
"properties": {
|
|
20716
|
-
"yesNo": {
|
|
20717
|
-
"type": "string",
|
|
20718
|
-
"title": "",
|
|
20719
|
-
"enum": [
|
|
20720
|
-
"Yes",
|
|
20721
|
-
"No"
|
|
20722
|
-
]
|
|
20723
|
-
}
|
|
20724
|
-
},
|
|
20725
|
-
"oneOf": [
|
|
20726
|
-
{
|
|
20727
|
-
"properties": {
|
|
20728
|
-
"yesNo": {
|
|
20729
|
-
"enum": [
|
|
20730
|
-
"No"
|
|
20731
|
-
]
|
|
20732
|
-
}
|
|
20733
|
-
}
|
|
20734
|
-
},
|
|
20735
|
-
{
|
|
20736
|
-
"properties": {
|
|
20737
|
-
"yesNo": {
|
|
20738
|
-
"enum": [
|
|
20739
|
-
"Yes"
|
|
20740
|
-
]
|
|
20741
|
-
},
|
|
20742
|
-
"details": {
|
|
20743
|
-
"title": "Name of the provider",
|
|
20744
|
-
"type": "string",
|
|
20745
|
-
"minLength": 1
|
|
20746
|
-
},
|
|
20747
|
-
"attachments": {
|
|
20748
|
-
"title": "Please supply copies of the relevant documents",
|
|
20749
|
-
"type": "string",
|
|
20750
|
-
"enum": [
|
|
20751
|
-
"Attached",
|
|
20752
|
-
"To follow"
|
|
20753
|
-
]
|
|
20754
|
-
}
|
|
20755
|
-
}
|
|
20756
|
-
}
|
|
20757
|
-
]
|
|
20758
|
-
},
|
|
20759
|
-
"lastMaintained": {
|
|
20760
|
-
"title": "When was the system last maintained or serviced?",
|
|
20761
|
-
"type": "string",
|
|
20762
|
-
"format": "date"
|
|
20763
|
-
},
|
|
20764
|
-
"inGoodWorkingOrder": {
|
|
20765
|
-
"title": "Is the system in good working order to your satisfaction?",
|
|
20766
|
-
"type": "object",
|
|
20767
|
-
"properties": {
|
|
20768
|
-
"yesNo": {
|
|
20769
|
-
"type": "string",
|
|
20770
|
-
"title": "",
|
|
20771
|
-
"enum": [
|
|
20772
|
-
"Yes",
|
|
20773
|
-
"No"
|
|
20774
|
-
]
|
|
20775
|
-
}
|
|
20776
|
-
},
|
|
20777
|
-
"oneOf": [
|
|
20778
|
-
{
|
|
20779
|
-
"properties": {
|
|
20780
|
-
"yesNo": {
|
|
20781
|
-
"enum": [
|
|
20782
|
-
"Yes"
|
|
20783
|
-
]
|
|
20784
|
-
}
|
|
20785
|
-
}
|
|
20786
|
-
},
|
|
20787
|
-
{
|
|
20788
|
-
"properties": {
|
|
20789
|
-
"yesNo": {
|
|
20790
|
-
"enum": [
|
|
20791
|
-
"No"
|
|
20792
|
-
]
|
|
20793
|
-
},
|
|
20794
|
-
"details": {
|
|
20795
|
-
"title": "Details",
|
|
20796
|
-
"type": "string",
|
|
20797
|
-
"minLength": 1
|
|
20798
|
-
}
|
|
20799
|
-
}
|
|
20800
|
-
}
|
|
20801
|
-
]
|
|
20802
|
-
},
|
|
20803
|
-
"isConnectedToNationalGrid": {
|
|
20804
|
-
"title": "Is the system connected to the National Grid e.g. for feed-in tariffs (FiT) or Smart Export Guarantee (SEG)",
|
|
20805
|
-
"type": "string",
|
|
20806
|
-
"enum": [
|
|
20807
|
-
"Yes (FiT)",
|
|
20808
|
-
"Yes (SEG)",
|
|
20809
|
-
"No"
|
|
20810
|
-
]
|
|
20811
|
-
},
|
|
20812
|
-
"photovoltaicMeterPanelLocation": {
|
|
20813
|
-
"title": "Location of photovoltaic panel meter (if any)",
|
|
20814
|
-
"type": "object",
|
|
20815
|
-
"properties": {
|
|
20816
|
-
"description": {
|
|
20817
|
-
"title": "Describe the location of the meter",
|
|
20818
|
-
"type": "string",
|
|
20819
|
-
"minLength": 1
|
|
20820
|
-
},
|
|
20821
|
-
"attachments": {
|
|
20822
|
-
"title": "Photograph of meter location",
|
|
20823
|
-
"type": "string",
|
|
20824
|
-
"enum": [
|
|
20825
|
-
"Attached",
|
|
20826
|
-
"To follow"
|
|
20827
|
-
]
|
|
20828
|
-
}
|
|
20829
|
-
}
|
|
20830
|
-
},
|
|
20831
|
-
"photovoltaicBatteriesLocation": {
|
|
20832
|
-
"title": "Location of photovoltaic batteries (if any)",
|
|
20833
|
-
"type": "object",
|
|
20834
|
-
"properties": {
|
|
20835
|
-
"description": {
|
|
20836
|
-
"title": "Describe the location of the batteries",
|
|
20837
|
-
"type": "string",
|
|
20838
|
-
"minLength": 1
|
|
20839
|
-
},
|
|
20840
|
-
"attachments": {
|
|
20841
|
-
"title": "Photograph of batteries location",
|
|
20842
|
-
"type": "string",
|
|
20843
|
-
"enum": [
|
|
20844
|
-
"Attached",
|
|
20845
|
-
"To follow"
|
|
20846
|
-
]
|
|
20847
|
-
}
|
|
20848
|
-
}
|
|
20849
|
-
}
|
|
20850
|
-
}
|
|
20851
|
-
}
|
|
20852
|
-
]
|
|
20853
|
-
},
|
|
20854
|
-
"electricityMeter": {
|
|
20855
|
-
"title": "Location of electricity meter (if any)",
|
|
20856
|
-
"type": "object",
|
|
20857
|
-
"properties": {
|
|
20858
|
-
"location": {
|
|
20859
|
-
"title": "Describe the location of the meter",
|
|
20860
|
-
"type": "string",
|
|
20861
|
-
"minLength": 1
|
|
20862
|
-
},
|
|
20863
|
-
"attachments": {
|
|
20864
|
-
"title": "Photograph of meter location",
|
|
20865
|
-
"type": "string",
|
|
20866
|
-
"enum": [
|
|
20867
|
-
"Attached",
|
|
20868
|
-
"To follow"
|
|
20869
|
-
]
|
|
20870
|
-
},
|
|
20871
|
-
"mpan": {
|
|
20872
|
-
"title": "Meter Point Administration Number (MPAN)",
|
|
20873
|
-
"description": "Your MPAN is on your electricity or dual fuel bill, usually in a box marked ‘Supply Number’. It’s 21 digits long and begins with ‘S’. You’ll only need the last 12 or 13 digits.",
|
|
20874
|
-
"type": "integer"
|
|
20875
|
-
}
|
|
20876
|
-
}
|
|
20877
|
-
},
|
|
20878
|
-
"gasMeter": {
|
|
20879
|
-
"title": "Location of gas meter (if any)",
|
|
20880
|
-
"type": "object",
|
|
20881
|
-
"properties": {
|
|
20882
|
-
"location": {
|
|
20883
|
-
"title": "Describe the location of the meter",
|
|
20884
|
-
"type": "string",
|
|
20885
|
-
"minLength": 1
|
|
20886
|
-
},
|
|
20887
|
-
"attachments": {
|
|
20888
|
-
"title": "Photograph of meter location",
|
|
20889
|
-
"type": "string",
|
|
20890
|
-
"enum": [
|
|
20891
|
-
"Attached",
|
|
20892
|
-
"To follow"
|
|
20893
|
-
]
|
|
20894
|
-
},
|
|
20895
|
-
"mprn": {
|
|
20896
|
-
"title": "Meter Point Reference Number (MPRN)",
|
|
20897
|
-
"description": "You can find your property’s MPRN on your gas or dual fuel bill. It’s usually marked ‘Meter Point Reference Number’ and is between six and 10 digits long.",
|
|
20898
|
-
"type": "integer"
|
|
20899
|
-
}
|
|
20900
|
-
}
|
|
20901
|
-
},
|
|
20902
|
-
"stopcock": {
|
|
20903
|
-
"title": "Location of stopcock (if any)",
|
|
20904
|
-
"type": "object",
|
|
20905
|
-
"properties": {
|
|
20906
|
-
"location": {
|
|
20907
|
-
"title": "Describe the location of the stopcock",
|
|
20908
|
-
"type": "string",
|
|
20909
|
-
"minLength": 1
|
|
20910
|
-
},
|
|
20911
|
-
"attachments": {
|
|
20912
|
-
"title": "Photograph of stopcock location",
|
|
20913
|
-
"type": "string",
|
|
20914
|
-
"enum": [
|
|
20915
|
-
"Attached",
|
|
20916
|
-
"To follow"
|
|
20917
|
-
]
|
|
20918
|
-
}
|
|
20919
|
-
}
|
|
20920
|
-
},
|
|
20921
|
-
"waterMeter": {
|
|
20922
|
-
"title": "Location of water meter (if any)",
|
|
20923
|
-
"type": "object",
|
|
20924
|
-
"properties": {
|
|
20925
|
-
"location": {
|
|
20926
|
-
"title": "Describe the location of the meter",
|
|
20927
|
-
"type": "string",
|
|
20928
|
-
"minLength": 1
|
|
20929
|
-
},
|
|
20930
|
-
"attachments": {
|
|
20931
|
-
"title": "Photograph of meter location",
|
|
20932
|
-
"type": "string",
|
|
20933
|
-
"enum": [
|
|
20934
|
-
"Attached",
|
|
20935
|
-
"To follow"
|
|
20936
|
-
]
|
|
20937
|
-
}
|
|
20938
|
-
}
|
|
20939
20948
|
}
|
|
20940
20949
|
}
|
|
20941
20950
|
},
|
|
@@ -21680,7 +21689,7 @@
|
|
|
21680
21689
|
"type": "object",
|
|
21681
21690
|
"properties": {
|
|
21682
21691
|
"hasOthersAged17OrOver": {
|
|
21683
|
-
"title": "Other than the sellers, does anyone else aged 17 or over
|
|
21692
|
+
"title": "Other than the sellers, does anyone else aged 17 or over live at the property?",
|
|
21684
21693
|
"type": "string",
|
|
21685
21694
|
"enum": [
|
|
21686
21695
|
"Yes",
|