-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb13-expenditure-data.json
6178 lines (6178 loc) · 341 KB
/
b13-expenditure-data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"series_for_dept": {
"Land Information New Zealand": [
{
"y": 135288000,
"scope": "This appropriation is limited to the acquisition of the lessees' interest in pastoral lease land and purchase of any land and/or assets required to complete the acquisition of lessee interest in order to achieve Tenure Review outcomes under the Crown Pastoral Land Act 1998, or to achieve Government high country objectives.",
"name": "Land Tenure Reform Acquisitions",
"previous_y": 2776000
},
{
"y": 51310000,
"scope": "The collection and authorisation of land data and information in accordance with the regulatory frameworks.",
"name": "Land and Seabed Data Capture and Processing",
"previous_y": 43683000
},
{
"y": 30000000,
"scope": "To pay Transit NZ the equivalent of what the Crown has received from the sales of Transit properties.",
"name": "Proceeds from Sale of Transit NZ Properties",
"previous_y": 24559000
},
{
"y": 19542000,
"scope": "The management and disposal of the Crown's interest in land and property (outside of the conservation estate) and acquisition, management and disposal of land and property administered by the department on behalf of the Crown.",
"name": "Crown Property Management and Disposal Services",
"previous_y": 17526000
},
{
"y": 13437000,
"scope": "Ensuring that the security and management of LINZ's databases and systems for land information are managed effectively and efficiently.",
"name": "Land and Seabed Information Storage and Management",
"previous_y": 14006000
},
{
"y": 6682000,
"scope": "Ensuring that the regulatory frameworks that create and protect property rights, and protect the public interest in Crown property management, rating valuations and the land information for which LINZ is responsible, are managed effectively and that delivery against the frameworks is quality assured.",
"name": "Standards and Quality Assurance",
"previous_y": 6850000
},
{
"y": 2955000,
"scope": "This appropriation is limited to the assessment of applications for consent to acquire sensitive New Zealand assets, monitoring and enforcement.",
"name": "Administering the Overseas Investment Regime",
"previous_y": 2896000
},
{
"y": 2595000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to land, property and geospatial information.",
"name": "Policy Advice",
"previous_y": 2412000
},
{
"y": 2163000,
"scope": "This appropriation is limited to the undertaking of initiatives within the Ocean Survey 20/20 Programme.",
"name": "Administering Ocean Survey 20/20",
"previous_y": 3798000
},
{
"y": 2010000,
"scope": "The provision of access to, and dissemination of, information held by LINZ.",
"name": "Land and Seabed Information Access and Dissemination",
"previous_y": 4730000
},
{
"y": 1765000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Land Information New Zealand, as authorised by section 24(1) of the Public Finance Act 1989.",
"name": "Land Information New Zealand - Capital Expenditure",
"previous_y": 6381000
},
{
"y": 1394000,
"scope": "This appropriation is limited to the expenses incurred under the New Zealand Geographic (Nga Pou Taunaha o Aotearoa) Act 2008, including: Board/Committee meetings, secretariat personnel, consultation, public advertising and publicity, national and international liaison and representation, and Board publications.",
"name": "Administration of the New Zealand Geographic Board (Nga Pou Taunaha o Aotearoa) Act 2008",
"previous_y": 1373000
},
{
"y": 1383000,
"scope": "This appropriation is limited to location-based information for the recovery and rebuild in Canterbury.",
"name": "Location-based information for the rebuild of Canterbury"
},
{
"y": 1157000,
"scope": "Payment of rates on Crown land and surplus government properties administered by the department on behalf of the Crown.",
"name": "Crown Rates",
"previous_y": 1058000
},
{
"y": 1044000,
"scope": "Acquisition of properties falling within Cabinet's approved policy area for Huntly East subsidence zone.",
"name": "Crown Acquisitions - Huntly East",
"previous_y": 316000
},
{
"y": 843000,
"scope": "Investigation and resolution, including legal costs and settlement, of land-related liabilities administered by the department.",
"name": "Land Liabilities",
"previous_y": 650000
},
{
"y": 543000,
"scope": "Leasehold liabilities paid on residual surplus government accommodation administered by the department on behalf of the Crown.",
"name": "Residual Crown Leasehold Rents",
"previous_y": 141000
},
{
"y": 500000,
"scope": "Analysis, investigation and, where necessary, appropriate remedial action on contaminated sites for which the Crown has accepted responsibility.",
"name": "Contaminated Sites",
"previous_y": 137000
},
{
"y": 500000,
"scope": "Management of Crown forest properties and licences, including settling reviews, interest liability and GST on refunded fees.",
"name": "Crown Forest Management",
"previous_y": 312000
},
{
"y": 500000,
"scope": "This appropriation is limited to loans made to Crown pastoral lessees who suffer significant financial hardship due to back-rent payable under the Crown Pastoral Land Act 1998.",
"name": "Loans for Crown Pastoral Lease Holders"
},
{
"y": 396000,
"scope": "This output class is limited to the provision of services to Ministers to enable them to discharge their portfolio responsibilities, including appointments to boards, the implementation of policy decisions and development of operational policy.",
"name": "Ministerial Services, Appointments, Implementation and Operational Policy"
},
{
"y": 393000,
"scope": "This appropriation is limited to depreciation of buildings on surplus Crown land.",
"name": "Depreciation",
"previous_y": 373000
},
{
"y": 300000,
"scope": "This appropriation is limited to expenses incurred in the management of soil conservation reserves in accordance with the Soil Conservation and Rivers Control Act 1941.",
"name": "Soil Conservation Reserve Management"
},
{
"y": 122000,
"scope": "This appropriation is limited to costs associated with the disposal and holding costs of land and improvements that have been reallocated to LINZ for disposal.",
"name": "Land Disposal Services for Other Agencies"
},
{
"y": 56000,
"scope": "Acquisition of land from Territorial Authorities and other Crown agencies to effect boundary adjustments for works such as roading and rail service improvements.",
"name": "Crown Purchases- Land Exchanges"
},
{
"y": 25000,
"scope": "This appropriation is limited to the provision for writing off bad and doubtful debts.",
"name": "Bad and Doubtful Debts"
}
],
"Ministry of Business, Innovation and Employment": [
{
"y": 637158000,
"scope": "This appropriation is limited to the purchase of housing and related services delivered by Housing New Zealand Corporation to individuals who are eligible for an income related rent, assessed as the difference in price between the amounts of market rents for the housing provided by the Corporation and the income related rents charged.",
"name": "Purchase of Housing and Related Services for Tenants Paying Income Related Rent",
"previous_y": 579522000
},
{
"y": 539992000,
"scope": "To cover the cost of purchasing medical services, social rehabilitation and elective health care services on the Non-Earners' Account and contracted services.",
"name": "Rehabilitation Entitlements and Services",
"previous_y": 566291000
},
{
"y": 277281000,
"scope": "To fund public health acute services for claims on the Non-Earners' Account.",
"name": "Public Health Acute Services",
"previous_y": 258963000
},
{
"y": 215514000,
"scope": "This appropriation is limited to Crown Research Institutes to create and maintain capability that is required for their core purpose and strategy.",
"name": "Crown Research Institute Core Funding",
"previous_y": 220145000
},
{
"y": 187494000,
"scope": "This appropriation is limited to research and research applications to develop new technologies, novel materials, and new products, processes and services for the manufacturing and technology sectors.",
"name": "High Value Manufacturing and Services Research",
"previous_y": 145900000
},
{
"y": 186967000,
"scope": "This appropriation is limited to the provision of customer services that include facilitation and processing of visa applications, the management of New Zealand's immigration intelligence, risk and integrity systems, and response to settlement needs and community initiatives to encourage migrant participation. Funding for international membership in immigration forums is also provided.",
"name": "Immigration Services",
"previous_y": 188064000
},
{
"y": 182985000,
"scope": "This appropriation is limited to cover the cost of purchasing medical services, social rehabilitation and elective health care services and contracted services for claims by non-earners' on the Treatment Injury Account.",
"name": "Rehabilitation Entitlements and Services - Treatment Injuries for Non-Earners'",
"previous_y": 169997000
},
{
"y": 165000000,
"scope": "This appropriation is limited to the provision of ongoing investment funding for Crown Fibre Holdings to implement the Government's broadband investment commitment",
"name": "Broadband Investment (Crown Fibre Holdings Capital Costs)"
},
{
"y": 150862000,
"scope": "This appropriation is limited to refinancing existing Housing New Zealand Corporation and Housing New Zealand Limited debt.",
"name": "Refinancing of Housing New Zealand Corporation and Housing New Zealand Limited Debt",
"previous_y": 175495000
},
{
"y": 141000000,
"scope": "This appropriation is limited to the payment of grants and investment for non-urban infrastructure offset by the Telecommunications Development Levy.",
"name": "Telecommunications Development Levy Funded Procurement - Non-Urban Infrastructure"
},
{
"y": 106452000,
"scope": "This appropriation is limited to research and research applications to support productivity growth and sustainability of New Zealand\u2019s primary industries, and the development of premium food and industrial biological products and technologies responsive to global consumer preferences.",
"name": "Biological Industries Research",
"previous_y": 102136000
},
{
"y": 101264000,
"scope": "This appropriation is limited to helping firms export and internationalise by identifying and exploiting market and investment opportunities; overcoming internationalisation barriers; providing customised advice and support; and enabling access to international business networks.",
"name": "International Business Growth Services",
"previous_y": 100923000
},
{
"y": 83851000,
"scope": "This appropriation is limited to the promotion of New Zealand as a visitor destination in key overseas markets.",
"name": "Marketing of New Zealand as a Visitor Destination",
"previous_y": 83861000
},
{
"y": 82727000,
"scope": "This appropriation is limited to research and research applications to improve the health and social well-being of New Zealanders.",
"name": "Health and Society Research",
"previous_y": 84645000
},
{
"y": 80768000,
"scope": "This appropriation is limited to grants towards insulation and clean heating devices to make New Zealand homes healthier and more energy efficient.",
"name": "Warm Up New Zealand",
"previous_y": 83605000
},
{
"y": 75049000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Ministry of Business, Innovation and Employment, as authorised by section 24(1) of the Public Finance Act 1989.",
"name": "Ministry of Business, Innovation and Employment - Capital Expenditure"
},
{
"y": 68788000,
"scope": "This appropriation is limited to the purchasing of services from, or providing support to, third party providers of social and/or affordable housing services.",
"name": "Social Housing Fund",
"previous_y": 2562000
},
{
"y": 63906000,
"scope": "This appropriation is limited to formulating, monitoring and enforcing compliance with the regulations and rules governing the electricity industry and other outputs in accordance with the statutory functions under the Electricity Industry Act; and delivery of core electricity system and market operation functions, carried out under service provider contracts.",
"name": "Electricity Industry Governance and Market Operations",
"previous_y": 59688000
},
{
"y": 56639000,
"scope": "To cover the cost of injury prevention, claim processing, assessment, payment services and case management on the Non-Earners' Account.",
"name": "Case Management and Supporting Services",
"previous_y": 67863000
},
{
"y": 51569000,
"scope": "This appropriation is limited to the provision of information, education and support for workplaces regarding effective workplace health and safety practice, and enforcement action to promote compliance with the Health and Safety in Employment Act 1992 and related regulations.",
"name": "Health and Safety Services",
"previous_y": 41326000
},
{
"y": 50556000,
"scope": "Assistance to film and television productions that spend over $15 million in New Zealand.",
"name": "Large Budget Screen Production Fund",
"previous_y": 81639000
},
{
"y": 46755000,
"scope": "This appropriation is limited to excellent investigator-initiated research.",
"name": "Marsden Fund",
"previous_y": 46755000
},
{
"y": 35000000,
"scope": "This appropriation is limited to assisting the Wellington City Council upgrade its social housing portfolio under the terms of a Deed of Grant entered into between the Crown, Housing New Zealand Corporation and the Council.",
"name": "Wellington City Council Social Housing Assistance",
"previous_y": 43500000
},
{
"y": 33238000,
"scope": "This appropriation is limited to research and research applications to underpin the management, protection and enhancement of natural ecosystems, land and freshwater resources, climate and atmosphere within New Zealand, including Antarctica.",
"name": "Environmental Research",
"previous_y": 35209000
},
{
"y": 32807000,
"scope": "This appropriation is limited to securing and capitalising on significant economic development opportunities for New Zealand, with a focus on sectors and special events.",
"name": "Services to Support Sector Development and Special Events",
"previous_y": 30397000
},
{
"y": 30027000,
"scope": "This appropriation is limited to support for high growth firms to undertake additional market development and business capability activities required for growth in new markets, that deliver benefits for both the firm and the wider New Zealand economy.",
"name": "International Growth Fund",
"previous_y": 24496000
},
{
"y": 29255000,
"scope": "Capital Investment to accelerate the development of the New Zealand Venture Capital Market. Public funds will be co-invested with the private sector to increase the rate of formation of new businesses based on high added value goods and services.",
"name": "Venture Investment Fund",
"previous_y": 8675000
},
{
"y": 26479000,
"scope": "This appropriation is limited to the provision of income maintenance, independence allowance, and other compensation payments for claims by non-earners' on the Treatment Injury Account.",
"name": "Compensation Entitlements - Treatment Injuries for Non-Earners'",
"previous_y": 9477000
},
{
"y": 25772000,
"scope": "This appropriation is limited to the provision of residential tenancy and unit title dispute resolution services, information, education, and advice; administration and investment of residential tenancy bond monies; provision of administrative support to the State Housing Appeals Authority.",
"name": "Residential Tenancy and Unit Title Services",
"previous_y": 20369000
},
{
"y": 24801000,
"scope": "This appropriation is limited to the provision of information, guidance, investigation, mediation and decision-making regarding employment rights and upholding regulatory standards including support services provided to employment relations institutions.",
"name": "Employment Relations Services",
"previous_y": 22749000
},
{
"y": 24344000,
"scope": "This output class is limited to operational and policy outputs in accordance with statutory functions under the Energy Efficiency and Conservation Act 2000 and the government's energy strategies.",
"name": "Energy Efficiency and Conservation",
"previous_y": 25246000
},
{
"y": 23989000,
"scope": "This appropriation is limited to the provision of income maintenance, independence allowance, and other compensation payments for claims on the Non-Earners' Account.",
"name": "Compensation Entitlements",
"previous_y": 4001000
},
{
"y": 23839000,
"scope": "This appropriation is limited to activities associated with the setting of performance standards for buildings and the design and delivery of regulatory schemes and other initiatives to help ensure those standards are met.",
"name": "Building Regulation and Control",
"previous_y": 20782000
},
{
"y": 23225000,
"scope": "Registering and provision of documents and information services in respect of all corporate entities, securities over insurance and superannuation schemes and securities over personal property (excluding land).",
"name": "Registration and Provision of Statutory Information",
"previous_y": 22427000
},
{
"y": 19916000,
"scope": "This appropriation is limited to cover the cost of injury prevention, claim lodgement and management, investment management and appropriation setting for claims by non-earners' on the Treatment Injury Account.",
"name": "Case Management and Supporting Services - Treatment Injuries for Non-Earners'",
"previous_y": 11028000
},
{
"y": 16435000,
"scope": "This appropriation is limited to the promotion of fair trading and competitive markets through the administration, enforcement and adjudication activities of the Commerce Commission, and the internal costs of major litigation undertaken by the Commerce Commission in relation to all of its statutory functions.",
"name": "Enforcement of General Market Regulation",
"previous_y": 18073000
},
{
"y": 16232000,
"scope": "Support the development of the market for early stage equity finance.",
"name": "Seed Co-investment Fund",
"previous_y": 3181000
},
{
"y": 15799000,
"scope": "To enable the provision of the KiwiSaver deposit subsidy for people who meet the required eligibility criteria.",
"name": "KiwiSaver Deposit Subsidy",
"previous_y": 9466000
},
{
"y": 15379000,
"scope": "Allocation and management of Crown-owned petroleum, coal and mineral resources under the Crown Minerals Act 1991 and minerals programmes issued under the Act.",
"name": "Management of the Crown Mineral Estate",
"previous_y": 13648000
},
{
"y": 15185000,
"scope": "This appropriation is limited to the provision of refugee customer services that include selection, travel and resettlement of quota refugees, protection determinations and support processes for claimants. Funding is also provided for preparedness to respond to a humanitarian crisis.",
"name": "Refugee and Protection Services",
"previous_y": 14533000
},
{
"y": 15078000,
"scope": "Support for major events that provide economic, social, cultural and international profiling benefits to New Zealand.",
"name": "Major Events Development Fund",
"previous_y": 13253000
},
{
"y": 14998000,
"scope": "This appropriation is limited to acquiring, developing and modernising properties under the Housing Act 1955.",
"name": "Acquisition and Development of properties under the Housing Act 1955",
"previous_y": 5575000
},
{
"y": 14804000,
"scope": "This output class is limited to ministerial services and leadership of the science and innovation sector.",
"name": "Strategic Leadership in the Science and Innovation Sector",
"previous_y": 19323000
},
{
"y": 14783000,
"scope": "This appropriation is limited to research and research applications to support hazard management and improve the durability of NZ urban and rural settlements.",
"name": "Hazards and Infrastructure Research",
"previous_y": 13188000
},
{
"y": 14674000,
"scope": "The administration of bankruptcies and liquidations under the Insolvency Act 2006 and the Companies Act 1993 and the management of criminal proceeds orders under the Proceeds of Crime Act 1991, and the Criminal Proceeds (Recovery) Act 2009.",
"name": "Administration of Insolvencies",
"previous_y": 13750000
},
{
"y": 14212000,
"scope": "Administering legislation providing for the protection of intellectual property rights by the granting of patents and plant variety rights, the registration of trademarks and designs.",
"name": "Registration and Granting of Intellectual Property Rights",
"previous_y": 14652000
},
{
"y": 13800000,
"scope": "This appropriation is limited to assessing the eligibility of weathertight homes claims; independent technical assessment of claims, including reports on actual and probable damage with estimated costs of repair; administration of the financial assistance package; claim management until repair or claim lodged with the Weathertight Tribunal; provision of mediation services; and advice, information and education to support more informed consumer decisions.",
"name": "Weathertight Services",
"previous_y": 15776000
},
{
"y": 13752000,
"scope": "This appropriation is limited to building and enhancing business and management capability through providing access to effective assessment, advice, training, mentoring and information.",
"name": "Services to Develop Business Capability",
"previous_y": 11949000
},
{
"y": 13558000,
"scope": "This appropriation is limited to the purchase of housing related services from Housing New Zealand Corporation including home ownership initiatives, the Housing Innovation Fund and Healthy Housing.",
"name": "HNZC Housing Support Services",
"previous_y": 15383000
},
{
"y": 13355000,
"scope": "This appropriation is limited to encouraging the career development of the country\u2019s talented early and mid-career researchers.",
"name": "Fellowships for Excellence",
"previous_y": 8320000
},
{
"y": 13350000,
"scope": "This appropriation is limited to the cost of fibre connections between schools and UFB and RBI providers\u2019 cable in the roadway or network operators\u2019 digital microwave radio towers.",
"name": "Fibre Drop Costs",
"previous_y": 1458000
},
{
"y": 13255000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to policy areas of development, evaluation and overview of economic, industry and regional development policies and initiatives to achieve short and long term economic growth and stability, and improving and leading the public sector procurement policy.",
"name": "Policy Advice \u2013 Sectoral Leadership and Development, Firm Capability, and Regional Development"
},
{
"y": 13000000,
"scope": "This output class is limited to: - conducting electricity efficiency research, and - development and administration of programmes that provide incentives for cost-effective energy efficiency and conservation, aimed at changing market behaviours.",
"name": "Electricity Efficiency",
"previous_y": 12736000
},
{
"y": 12618000,
"scope": "This output class is limited to contract management, planning, monitoring and evaluating science and innovation outputs and impacts.",
"name": "Science and Innovation Contract Management",
"previous_y": 15799000
},
{
"y": 12544000,
"scope": "This appropriation is limited to capital expenditure incurred on emergency and temporary accommodation for people displaced by the Canterbury earthquakes.",
"name": "Canterbury Earthquake: Acquisition of Emergency and Temporary Accommodation",
"previous_y": 11910000
},
{
"y": 12256000,
"scope": "This appropriation is limited to the performance of statutory functions relating to licensing of market participants and risk-based monitoring of compliance, including with disclosure requirements under financial markets legislation.",
"name": "Performance of Licensing and Compliance Monitoring Functions",
"previous_y": 11688000
},
{
"y": 12100000,
"scope": "This appropriation is limited to the provision of financial assistance for the development of a National Cycleway.",
"name": "National Cycleway Fund - Extension"
},
{
"y": 11776000,
"scope": "This appropriation is limited to research and research applications to improve mineral extraction, improve energy security and to obtain efficient and affordable energy use.",
"name": "Energy and Minerals Research",
"previous_y": 12972000
},
{
"y": 11549000,
"scope": "This appropriation is limited to development of operational policies to achieve short and long term economic growth and stability, services to support the Minister, monitoring the performance and compliance of Crown Entities, administering grants programmes, providing support for statutory bodies and improving and leading the public sector procurement practises.",
"name": "Sectoral Leadership, Firm Capability, and Regional Development Operational Policy, Ministerial Servicing and Crown Entity Monitoring"
},
{
"y": 10790000,
"scope": "This appropriation is limited to meeting the external direct costs of major litigation activity undertaken by the Commerce Commission arising from its general market or sector specific activities.",
"name": "Commerce Commission Litigation Fund",
"previous_y": 3933000
},
{
"y": 10433000,
"scope": "This appropriation is limited to engaging New Zealanders with science and technology through approaches determined by the Minister.",
"name": "Engaging New Zealanders with Science and Technology",
"previous_y": 8520000
},
{
"y": 9920000,
"scope": "This appropriation is limited to the development, implementation and maintenance of the registration and licensing regimes for building practitioners and electrical workers.",
"name": "Occupational Licensing",
"previous_y": 10677000
},
{
"y": 9851000,
"scope": "This appropriation is limited to grants for international research relationships.",
"name": "International Relationships",
"previous_y": 6456000
},
{
"y": 8959000,
"scope": "Management of the radio spectrum, including technical arrangements for the allocation of spectrum, representation of New Zealand\u2019s international radio spectrum interests, and management of spectrum sales including costs associated with financial assistance for transition of radio licences when a management right is created or spectrum is allocated to a different use.",
"name": "Management and Enforcement of the Radiocommunications Act 1989",
"previous_y": 7877000
},
{
"y": 8415000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters.",
"name": "Policy Advice \u2013 Business Law and Competition Policy"
},
{
"y": 8350000,
"scope": "This appropriation is limited to a grant to contribute to the operation of the National eScience Infrastructure, including high-performance computational infrastructure and associated eScience services, that will support New Zealand research.",
"name": "National eScience Infrastructure",
"previous_y": 5841000
},
{
"y": 8300000,
"scope": "This appropriation is limited to debt or equity in Housing New Zealand Corporation to acquire, modernise or reconfigure Housing New Zealand Corporation state houses.",
"name": "Acquisition and Improvement of Housing New Zealand Corporation state houses",
"previous_y": 6426000
},
{
"y": 8066000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision making by Ministers on government policy matters relating to Housing.",
"name": "MCOA - Housing Policy Advice"
},
{
"y": 8000000,
"scope": "Increase in provision for doubtful debts on Income Related Rents Crown Debt.",
"name": "Increase in Debt Provision",
"previous_y": 11571000
},
{
"y": 6984000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to employment relations, health and safety (including Hazardous Substances and New Organisms) and international labour commitments.",
"name": "Policy Advice - Labour",
"previous_y": 8526000
},
{
"y": 6968000,
"scope": "This appropriation is limited to the performance of statutory functions relating to the investigation and enforcement of financial markets legislation, including the assessment of complaints, tips, and referrals.",
"name": "Performance of Investigation and Enforcement Functions",
"previous_y": 5749000
},
{
"y": 6839000,
"scope": "This appropriation is limited to the expense incurred in unwinding the discount rate used in the present value calculation of the Weathertight Homes Financial Assistance Package liability as the liability nears settlement.",
"name": "Unwind of Discount Rate used in the Present Value Calculation of Direct Payments under the Weathertight Homes Financial Assistance Package.",
"previous_y": 27332000
},
{
"y": 6482000,
"scope": "This appropriation is limited to selection of research, science and technology-related organisations and individuals for either the provision of research, science and technology outputs, or the award of grants; and negotiate, manage and monitor appropriate contracts with those organisations or individuals.",
"name": "Research Contract Management",
"previous_y": 6272000
},
{
"y": 6254000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to immigration policy and international immigration commitments.",
"name": "Policy Advice - Immigration"
},
{
"y": 6237000,
"scope": "This appropriation is limited to the performance of statutory functions relating to market intelligence, guidance, exemptions, investor education, and regulatory and government co-operation and advice.",
"name": "Performance of Market Analysis and Guidance, Investor Awareness, and Regulatory Engagement Functions",
"previous_y": 6837000
},
{
"y": 6050000,
"scope": "This appropriation is limited to operating expenses incurred on emergency and temporary accommodation for people displaced by the Canterbury earthquakes.",
"name": "Canterbury Earthquakes: Emergency and Temporary Accommodation",
"previous_y": 6442000
},
{
"y": 6000000,
"scope": "The regulation and monitoring of telecommunication services in accordance with the Telecommunications Act 2001.",
"name": "Enforcement of Telecommunications Sector Regulation",
"previous_y": 5429000
},
{
"y": 5782000,
"scope": "This appropriation is limited to services from the Retirement Commissioner to develop and promote methods of improving the effectiveness of retirement income policies, through the publishing of information and the delivery of a comprehensive public financial education programme.",
"name": "Retirement Commissioner",
"previous_y": 5782000
},
{
"y": 5764000,
"scope": "This appropriation is limited to providing specified standards to satisfy the needs for traceable physical measurement in New Zealand.",
"name": "National Measurement Standards",
"previous_y": 5764000
},
{
"y": 5760000,
"scope": "This appropriation is limited to grants to contribute to the maintenance and retention of databases, collections and significant infrastructure dedicated to research purposes.",
"name": "Science Collections and Infrastructure",
"previous_y": 4731000
},
{
"y": 5522000,
"scope": "For the cost of managing and funding of oil stocks to meet International Energy Agency obligations.",
"name": "Management of IEA Oil Stocks",
"previous_y": 2638000
},
{
"y": 5327000,
"scope": "This appropriation is limited to the purchase of advice on administration and associated policy work, Ministerial servicing and decision support for the Minister in relation to, and the administration of the regimes for: gas and electricity safety; energy efficiency and conservation; the supply, quality and measurement of gas and electricity; and fuel quality monitoring.",
"name": "Administration of Gas, Electricity and Energy Efficiency Regulations and Related Acts",
"previous_y": 4643000
},
{
"y": 5253000,
"scope": "This output class is limited to the provision of services to Ministers to enable them to discharge their portfolio (other than policy decision-making) responsibilities.",
"name": "Ministerial Services"
},
{
"y": 5028000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters.",
"name": "Policy Advice \u2013 Energy and Resource Issues"
},
{
"y": 5000000,
"scope": "This appropriation is limited to providing capital funding for the purchase of shares in the Tamaki Redevelopment Company.",
"name": "Tamaki Redevelopment Company Establishment"
},
{
"y": 4902000,
"scope": "This appropriation is limited to the co-ordination, management and delivery of the overall Departmental response programme, and the delivery of accommodation matching and placement services to people displaced by the Canterbury earthquakes.",
"name": "Canterbury Earthquakes: Building and Housing Assistance"
},
{
"y": 4900000,
"scope": "This appropriation is limited to depreciation expenses associated with the temporary Rugby World Cup showcase and festival building on Auckland's Queens Wharf.",
"name": "Depreciation on the temporary Rugby World Cup showcase and festival building on Auckland's Queens Wharf",
"previous_y": 4900000
},
{
"y": 4864000,
"scope": "This appropriation is limited to collection, processing, analysis and dissemination of data on tourism; development of operational policies in relation to Tourism issues, research support, services to support the Minister, monitoring the performance and compliance of Crown Entities, and administering grants programmes.",
"name": "Tourism Data and Operational Policy, Ministerial Servicing and Crown Entity Monitoring"
},
{
"y": 4844000,
"scope": "This appropriation is limited to the regulation of electricity lines businesses and Transpower under Part 4 of the Commerce Act 1986.",
"name": "Regulation of Electricity Lines Businesses",
"previous_y": 3953000
},
{
"y": 4596000,
"scope": "This appropriation is limited to the establishment and operation of the Food Innovation Network New Zealand.",
"name": "Establishment and operation of the Food Innovation Network New Zealand",
"previous_y": 3101000
},
{
"y": 4487000,
"scope": "Provision of advice and grants to support the development of business incubators and regional clusters, and to support regional partnerships to develop and implement sustainable economic growth strategies.",
"name": "Regional Partnerships and Facilitation",
"previous_y": 3646000
},
{
"y": 4410000,
"scope": "This appropriation is limited to the funding of financial reporting and auditing and assurance standards setting for the purposes of promoting the quality of financial reporting.",
"name": "Accounting and Assurance Standards Setting",
"previous_y": 4410000
},
{
"y": 4406000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision making by Ministers on government policy matters.",
"name": "Policy Advice"
},
{
"y": 4167000,
"scope": "This appropriation is limited to the development of skilled people and organisations undertaking research that supports the four themes of Vision Matauranga; indigenous innovation, environmental sustainability, health and social well being, and exploring indigenous knowledge.",
"name": "Vision Matauranga Capability Fund",
"previous_y": 6333000
},
{
"y": 4127000,
"scope": "This appropriation is limited to provision of a rent relief fund for service provider tenants of Community Group Housing properties who face difficulties in meeting rental payments.",
"name": "Community Housing Rent Relief Programme",
"previous_y": 3778000
},
{
"y": 4011000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to the labour market and employment policy.",
"name": "Labour Market Policy Advice"
},
{
"y": 3788000,
"scope": "Provision of information and technical advice on energy and resources, the management of the response to any international disruption in oil supplies, and the management of New Zealand's energy-related international relations.",
"name": "Energy and Resource Information Services",
"previous_y": 4372000
},
{
"y": 3780000,
"scope": "As set by the Remuneration Authority in order to administer and enforce employment-related legislation (section 171 of the Employment Relations Act 2000).",
"name": "Employment Relations Authority Members' Salaries and Allowances",
"previous_y": 2969000
},
{
"y": 3665000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters.",
"name": "Policy Advice - Communications",
"previous_y": 4573000
},
{
"y": 3598000,
"scope": "This appropriation is limited to facilitating, and promoting increased switching of electricity suppliers to consumers.",
"name": "Promoting and Facilitating Customer Switching",
"previous_y": 3403000
},
{
"y": 3551000,
"scope": "This appropriation is limited to the provision of information, education and enforcement services relating to the safe management of hazardous substances in the workplace, and the registration and inspection of amusement devices.",
"name": "Hazardous Substances and Amusement Devices Services",
"previous_y": 3817000
},
{
"y": 2805000,
"scope": "This appropriation is limited to the expense reflecting the guarantee fee subsidy under the Weathertight Services Financial Assistance Package: Loan Guarantee scheme.",
"name": "Weathertight Services: Guarantee Fee Subsidy",
"previous_y": 95000
},
{
"y": 2789000,
"scope": "This appropriation is limited to the provision of information and regional and sector engagement on labour market effectiveness and employment.",
"name": "Labour Market Information and Facilitation Services",
"previous_y": 3515000
},
{
"y": 2744000,
"scope": "This appropriation is limited to: the regulation of persons who provide immigration advice; facilitating the education and professional development of Immigration Advisers; and increasing public awareness of the Immigration Advisers Authority, pursuant to the functions described in section 35 of the Immigration Advisers Licensing Act 2007.",
"name": "Regulation of Immigration Advisers",
"previous_y": 2443000
},
{
"y": 2678000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision making by Ministers on government policy matters relating to Building and Construction.",
"name": "MCOA - Building and Construction Policy"
},
{
"y": 2650000,
"scope": "This appropriation is limited to the administration costs of the Social Housing Unit.",
"name": "Social Housing Unit",
"previous_y": 1986000
},
{
"y": 2545000,
"scope": "This output class is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to the accident compensation system.",
"name": "Policy Advice - ACC"
},
{
"y": 2526000,
"scope": "This appropriation is limited to selection of businesses or individuals for either the provision of Research Science and Technology output, or the award of grants, and to negotiate, manage and monitor appropriate contracts with these businesses or individuals.",
"name": "Business Research and Development Contract Management"
},
{
"y": 2484000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters.",
"name": "Policy Advice - Tourism",
"previous_y": 6719000
},
{
"y": 2465000,
"scope": "This appropriation is limited to the purchase of deaf relay services which is offset by the Telecommunications Development Levy.",
"name": "Telecommunications Development Levy Funded Procurement - Deaf Relay Service TSO",
"previous_y": 2236000
},
{
"y": 2443000,
"scope": "This appropriation is limited to the acquisition of seismic information relating to New Zealand\u2019s offshore petroleum basins.",
"name": "Acquisition of Petroleum Exploration Data",
"previous_y": 1433000
},
{
"y": 2396000,
"scope": "This appropriation is limited to compliance and enforcement activities to ensure a supportive measurement and product safety infrastructure for business and consumers.",
"name": "Measurement and Product Safety Compliance and Enforcement",
"previous_y": 2229000
},
{
"y": 2355000,
"scope": "This appropriation is limited to the development and delivery of information and programmes affecting the ability of consumers to transact with confidence, and services to support the Minister.",
"name": "Development of Consumer Information and Associated Issues"
},
{
"y": 2330000,
"scope": "Operational costs of the Venture Investment and Seed Co-investment Funds.",
"name": "Investment Fund Management",
"previous_y": 2330000
},
{
"y": 2156000,
"scope": "This appropriation is limited to the regulation of natural gas services under Part 4 of the Commerce Act 1986.",
"name": "Regulation of Natural Gas Services",
"previous_y": 2013000
},
{
"y": 2000000,
"scope": "This capital expenditure appropriation is limited to provision of funding for the Crown loans scheme to assist public sector agencies in implementing energy efficiency projects.",
"name": "Crown Energy Efficiency",
"previous_y": 1922000
},
{
"y": 2000000,
"scope": "This appropriation is limited to meeting the cost of major litigation activity arising from the enforcement of financial markets and securities markets law.",
"name": "Financial Markets Authority Litigation Fund",
"previous_y": 2134000
},
{
"y": 2000000,
"scope": "This appropriation is limited to depreciation expenses associated with Auckland's Queens Wharf.",
"name": "Depreciation on Auckland's Queens Wharf",
"previous_y": 2000000
},
{
"y": 2000000,
"scope": "This appropriation is limited to providing a Crown contribution towards the potential recovery of bodies in the Pike River Coal Mine and related matters.",
"name": "Crown Contribution to Pike River Recovery and Related Matters"
},
{
"y": 1996000,
"scope": "This appropriation is limited to the repair of housing at Ratana to a standard which improves the overall safety and energy efficiency of the house and enables the installation of clean-heating devices and insulation.",
"name": "Ratana Housing Repairs",
"previous_y": 64000
},
{
"y": 1809000,
"scope": "This appropriation is limited to upgrading the capability of Consumer New Zealand\u2019s Powerswitch website and promoting and facilitating the use of the website to consumers.",
"name": "Upgrading and Promoting the Consumer Powerswitch Website",
"previous_y": 693000
},
{
"y": 1680000,
"scope": "This appropriation is limited to the performance of the functions relating to the Financial Service Providers Reserve Dispute Resolution Scheme.",
"name": "Financial Service Providers Reserve Dispute Resolution Scheme",
"previous_y": 955000
},
{
"y": 1676000,
"scope": "This appropriation is limited to meeting costs associated with the proposed sponsorship of Team New Zealand's participation in the next multi-challenger America's Cup.",
"name": "Promotion of New Zealand Associated with the America's Cup",
"previous_y": 18073000
},
{
"y": 1600000,
"scope": "This appropriation is limited to the support of partnerships with industry that address strategic issues in the tourism sector.",
"name": "Tourism Growth Partnership",
"previous_y": 701000
},
{
"y": 1592000,
"scope": "This appropriation is limited to the development of operational policies in relation to financial sector legal frameworks, competition law and corporate governance, intellectual property, technical barriers to trade, trade rules remedies and tariffs, and other border issues, services to support the Minister, monitoring the performance and compliance of Crown Entitles, and providing support and monitoring of statutory bodies.",
"name": "Business Law and Competition Operational Policy, Ministerial Servicing and Crown Entity Monitoring"
},
{
"y": 1567000,
"scope": "Grant funding for programmes that promote improved employment relationships and good faith behaviour, and good health and safety practices amongst employers, unions and employees.",
"name": "Employment Relations Education Contestable Fund",
"previous_y": 300000
},
{
"y": 1543000,
"scope": "This appropriation is limited to funding for reviewing Fonterra's milk price setting arrangements, and dispute resolution relating to and enforcement of the Dairy Industry Restructuring Act 2001 and related regulations.",
"name": "Enforcement of Dairy Sector Regulation and Auditing of Milk Price Setting",
"previous_y": 402000
},
{
"y": 1517000,
"scope": "This appropriation is limited to the development of operational policies in relation to the operation of energy and resource markets (electricity, oil, gas, geothermal, coal, minerals and natural related resources) and energy efficiency and conservation issues, services to support the Minister, and monitoring the performance and compliance of Crown Entities.",
"name": "Energy and Resources Operational Policy, Ministerial Servicing and Crown Entity Monitoring"
},
{
"y": 1510000,
"scope": "Payments made to HNZC and other mortgage providers to compensate for the difference between the cost of funds and rate at which funds are lent and provide write-offs for loans.",
"name": "Housing Assistance",
"previous_y": 1490000
},
{
"y": 1494000,
"scope": "The performance of statutory functions by the Takeovers Panel as specified in the Takeovers Act 1993.",
"name": "Administration of the Takeovers Code",
"previous_y": 1494000
},
{
"y": 1419000,
"scope": "This appropriation is limited to supporting New Zealand's engagement on the Square Kilometre Array project in collaboration with Australia.",
"name": "Square Kilometre Array",
"previous_y": 635000
},
{
"y": 1400000,
"scope": "New Zealand's annual subscription to the ILO.",
"name": "International Labour Organisation",
"previous_y": 1420000
},
{
"y": 1395000,
"scope": "This appropriation is limited to the administration and management of Crown owned properties held under the Housing Act 1955.",
"name": "Management of Crown Properties held under the Housing Act 1955",
"previous_y": 1387000
},
{
"y": 1330000,
"scope": "This appropriation is limited to the provision of advice (including second opinion advice and contributions to policy advice led by other agencies) to support decision-making by Ministers on government policy matters relating to areas of development, coordination and implementation of policies and programmes that affect Small to Medium Enterprises.",
"name": "Policy Advice - Small Business",
"previous_y": 1544000
},
{
"y": 1269000,
"scope": "This appropriation is limited to funding expenditure for administering contracts procuring the supply of telecommunications relay services textphones and other equipment for user access to relay service platforms (including video) and the cost for administering rental of relay user equipment and depreciating this equipment, together with sponsoring New Zealand Sign Language interpreter scholarships and the purchase of ancillary services to support the availability and uptake of relay services.",
"name": "Administrative Support for Telecommunications Relay Equipment and Services",
"previous_y": 1255000
},
{
"y": 1250000,
"scope": "This output class is limited to costs of public engagement on National Science Challenges.",
"name": "Public consultation and engagement on National Science Challenges"
},
{
"y": 1204000,
"scope": "Assistance with the facilitation of specific sector initiatives, particularly in the areas of major events, pre-feasibility and feasibility studies and guarantees for significant projects to access funding through other government programmes and cash grants.",
"name": "Sector Strategies and Facilitation"
},
{
"y": 1200000,
"scope": "This appropriation is limited to the management of emergency events by the System Operator, if required, including increased monitoring and management responsibilities in the event of an emerging security situation, and planning and running an emergency conservation campaign.",
"name": "Security Management"
},
{
"y": 1175000,
"scope": "This appropriation is limited to a grant to contribute towards the purchase and operation of infrastructure that will support genomics research.",
"name": "Genomics Research Infrastructure",
"previous_y": 5600000
},
{
"y": 1150000,
"scope": "This appropriation is limited to the provision of funding to support industry and regional specific projects that are intended to contribute to economic growth.",
"name": "Regional and Industry Development Fund",
"previous_y": 3900000
},
{
"y": 1133000,
"scope": "Operation of an independent structure for Film NZ, development of a marketing plan for the film sector and coordination of regional film offices.",
"name": "Film New Zealand",
"previous_y": 1133000
},
{
"y": 1100000,
"scope": "This appropriation is limited to assistance for the decommissioning of high-emission heating options to improve air quality in polluted airsheds.",
"name": "Air Quality Grants and Assistance",
"previous_y": 822000
},
{
"y": 1042000,
"scope": "This appropriation is limited to investigative services including ministerial servicing to establish whether New Zealand industries require remedies to prevent injury caused by dumped or subsidised imports or sudden import surges.",
"name": "Administration of Trade Remedies",
"previous_y": 1031000
},
{
"y": 1019000,
"scope": "This appropriation is limited to the regulation of specified airport services provided by Auckland, Wellington and Christchurch International Airports, under Part 4 of the Commerce Act 1986.",
"name": "Regulation of Airport Services",
"previous_y": 389000
},
{
"y": 1000000,
"scope": "This appropriation is limited to providing support for the recovery of businesses affected by the Canterbury Earthquake.",
"name": "Canterbury Earthquake Recovery \u2013 Business Support",
"previous_y": 1950000
},
{
"y": 970000,