-
Notifications
You must be signed in to change notification settings - Fork 0
/
expenses-2011.json
5824 lines (5824 loc) · 359 KB
/
expenses-2011.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
{
"dept_totals": {
"Canterbury Earthquake Recovery Authority": {
"nzd": 21577000,
"previous_nzd": 3935000
},
"Controller and Auditor-General": {
"nzd": 83651000,
"previous_nzd": 75342000
},
"Crown Law Office": {
"nzd": 78204000,
"previous_nzd": 77056000
},
"Department of Building and Housing": {
"nzd": 997661000,
"previous_nzd": 1618175000
},
"Department of Conservation": {
"nzd": 441328000,
"previous_nzd": 404684000
},
"Department of Corrections ": {
"nzd": 1360569000,
"previous_nzd": 1379895000
},
"Department of Internal Affairs": {
"nzd": 559559000,
"previous_nzd": 612179000
},
"Department of Labour": {
"nzd": 1433478000,
"previous_nzd": 1574913000
},
"Department of the Prime Minister and Cabinet": {
"nzd": 21008000,
"previous_nzd": 46730000
},
"Education Review Office": {
"nzd": 29602000,
"previous_nzd": 30155000
},
"Government Communications Security Bureau": {
"nzd": 56423000,
"previous_nzd": 73926000
},
"Inland Revenue Department": {
"nzd": 6368618000,
"previous_nzd": 6317407000
},
"Land Information New Zealand": {
"nzd": 167982000,
"previous_nzd": 166705000
},
"Ministry for Culture and Heritage": {
"nzd": 367498000,
"previous_nzd": 381574000
},
"Ministry for the Environment": {
"nzd": 1088155000,
"previous_nzd": 1388120000
},
"Ministry of Agriculture and Forestry": {
"nzd": 730295000,
"previous_nzd": 629352000
},
"Ministry of Defence": {
"nzd": 258958000,
"previous_nzd": 182409000
},
"Ministry of Economic Development": {
"nzd": 1587832000,
"previous_nzd": 1114159000
},
"Ministry of Education ": {
"nzd": 12160565000,
"previous_nzd": 12048686000
},
"Ministry of Foreign Affairs and Trade": {
"nzd": 1096346000,
"previous_nzd": 997026000
},
"Ministry of Health": {
"nzd": 13953076000,
"previous_nzd": 13234377000
},
"Ministry of Justice": {
"nzd": 1617613000,
"previous_nzd": 1540352000
},
"Ministry of Pacific Island Affairs": {
"nzd": 8691000,
"previous_nzd": 9044000
},
"Ministry of Science and Innovation": {
"nzd": 773700000,
"previous_nzd": 787680000
},
"Ministry of Social Development": {
"nzd": 22024006000,
"previous_nzd": 21520208000
},
"Ministry of Transport": {
"nzd": 4322883000,
"previous_nzd": 3479059000
},
"Ministry of Women's Affairs": {
"nzd": 4609000,
"previous_nzd": 5102000
},
"New Zealand Customs Service": {
"nzd": 209811000,
"previous_nzd": 158498000
},
"New Zealand Defence Force": {
"nzd": 3082980000,
"previous_nzd": 2822164000
},
"New Zealand Police": {
"nzd": 1608767000,
"previous_nzd": 1615571000
},
"New Zealand Security Intelligence Service": {
"nzd": 35530000,
"previous_nzd": 37081000
},
"Office of the Clerk of the House of Representatives": {
"nzd": 19151000,
"previous_nzd": 20101000
},
"Office of the Ombudsmen": {
"nzd": 8863000,
"previous_nzd": 8875000
},
"Parliamentary Commissioner for the Environment": {
"nzd": 2680000,
"previous_nzd": 2679000
},
"Parliamentary Counsel Office": {
"nzd": 24826000,
"previous_nzd": 21727000
},
"Parliamentary Service": {
"nzd": 138059000,
"previous_nzd": 140880000
},
"Serious Fraud Office": {
"nzd": 12721000,
"previous_nzd": 11785000
},
"State Services Commission": {
"nzd": 246295000,
"previous_nzd": 232557000
},
"Statistics New Zealand": {
"nzd": 137751000,
"previous_nzd": 150158000
},
"Te Puni Kokiri": {
"nzd": 210692000,
"previous_nzd": 204015000
},
"The Treasury": {
"nzd": 4698467000,
"previous_nzd": 7098023000
}
},
"grand_total": {
"nzd": 82050480000,
"previous_nzd": 82222364000
},
"series_for_budget": [
[
"Ministry of Social Development",
22024006000
],
[
"Ministry of Health",
13953076000
],
[
"Ministry of Education ",
12160565000
],
[
"Inland Revenue Department",
6368618000
],
[
"The Treasury",
4698467000
],
[
"Ministry of Transport",
4322883000
],
[
"New Zealand Defence Force",
3082980000
],
[
"Ministry of Justice",
1617613000
],
[
"New Zealand Police",
1608767000
],
[
"Ministry of Economic Development",
1587832000
],
[
"Department of Labour",
1433478000
],
[
"Department of Corrections ",
1360569000
],
[
"Ministry of Foreign Affairs and Trade",
1096346000
],
[
"Ministry for the Environment",
1088155000
],
[
"Department of Building and Housing",
997661000
],
[
"Ministry of Science and Innovation",
773700000
],
[
"Ministry of Agriculture and Forestry",
730295000
],
[
"Department of Internal Affairs",
559559000
],
[
"Department of Conservation",
441328000
],
[
"Ministry for Culture and Heritage",
367498000
],
[
"Ministry of Defence",
258958000
],
[
"State Services Commission",
246295000
],
[
"Te Puni Kokiri",
210692000
],
[
"New Zealand Customs Service",
209811000
],
[
"Land Information New Zealand",
167982000
],
[
"Parliamentary Service",
138059000
],
[
"Statistics New Zealand",
137751000
],
[
"Controller and Auditor-General",
83651000
],
[
"Crown Law Office",
78204000
],
[
"Government Communications Security Bureau",
56423000
],
[
"New Zealand Security Intelligence Service",
35530000
],
[
"Education Review Office",
29602000
],
[
"Parliamentary Counsel Office",
24826000
],
[
"Canterbury Earthquake Recovery Authority",
21577000
],
[
"Department of the Prime Minister and Cabinet",
21008000
],
[
"Office of the Clerk of the House of Representatives",
19151000
],
[
"Serious Fraud Office",
12721000
],
[
"Office of the Ombudsmen",
8863000
],
[
"Ministry of Pacific Island Affairs",
8691000
],
[
"Ministry of Women's Affairs",
4609000
],
[
"Parliamentary Commissioner for the Environment",
2680000
]
],
"series_for_dept": {
"Canterbury Earthquake Recovery Authority": [
{
"name": "Planning for the Recovery",
"previous_y": 2936000,
"scope": "This appropriation is limited to expenses incurred in planning the recovery from the Canterbury Earthquake.",
"y": 16108000
},
{
"name": "Implementation for the Recovery",
"previous_y": 979000,
"scope": "This appropriation is limited to expenses incurred in implementing the recovery from the Canterbury earthquakes.",
"y": 5369000
},
{
"name": "Canterbury Earthquake Recovery Authority - Capital Expenditure",
"previous_y": 20000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Canterbury Earthquake Recovery Authority, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 100000
}
],
"Controller and Auditor-General": [
{
"name": "Audit and Assurance Services",
"previous_y": 64947000,
"scope": "This appropriation is limited to audit and related assurance services as required or authorised by statute.",
"y": 71601000
},
{
"name": "Performance Audits and Inquiries",
"previous_y": 6237000,
"scope": "This output class is limited to undertaking and reporting on performance audits and inquiries relating to public entities under the Public Audit Act 2001 and responding to requests for approvals in relation to pecuniary interest questions regulated by the Local Authorities Members\u2019 Interests Act 1968.",
"y": 6587000
},
{
"name": "Supporting Accountability to Parliament",
"previous_y": 2310000,
"scope": "This output class is limited to reporting to Parliament and others as appropriate on matters arising from audits and inquiries, reporting to and advising select committees, and advising other agencies in New Zealand and abroad to support Parliament and governing bodies in holding their executives to account for the use of public resources.",
"y": 2860000
},
{
"name": "Controller and Auditor-General - Capital Expenditure",
"previous_y": 1045000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Controller and Auditor-General, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 1800000
},
{
"name": "Remuneration of Auditor-General and Deputy Auditor-General",
"previous_y": 803000,
"scope": "This appropriation is limited to remuneration expenses for both the Auditor-General and the Deputy Auditor-General as authorised by clause 5 of the Third Schedule of the Public Audit Act 2001.",
"y": 803000
}
],
"Crown Law Office": [
{
"name": "Supervision and Conduct of Crown Prosecutions",
"previous_y": 47441000,
"scope": "The provision of a national Crown prosecution service that undertakes criminal trials on indictment and appeals to the High Court; the supervision of the network of Crown Solicitors who deliver the prosecution service; and the provision of advice on criminal law matters to other government agencies and Crown Solicitors.",
"y": 48196000
},
{
"name": "Legal Advice and Representation",
"previous_y": 22900000,
"scope": "Providing legal advice and representation services to central government departments and Crown agencies.",
"y": 22900000
},
{
"name": "Conduct of Criminal Appeals",
"previous_y": 3329000,
"scope": "Conducting appeals arising from criminal trials on indictment and from Crown appeals.",
"y": 3329000
},
{
"name": "The Exercise of Principal Law Officer Functions",
"previous_y": 2972000,
"scope": "Providing legal advice, representation services and administrative services to the Attorney-General and Solicitor-General to assist them in the exercise of their Principal Law Officer functions; and the provision of legal and constitutional advice to the Government, Ministers, and the judiciary.",
"y": 2938000
},
{
"name": "Crown Law Office - Capital Expenditure",
"previous_y": 414000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Crown Law Office, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 841000
}
],
"Department of Building and Housing": [
{
"name": "Purchase of Housing and Related Services for Tenants Paying Income Related Rent",
"previous_y": 558566000,
"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.",
"y": 587115000
},
{
"name": "Refinancing of Housing New Zealand Corporation and Housing New Zealand Limited Debt",
"previous_y": 160757000,
"scope": "This appropriation is limited to refinancing existing Housing New Zealand Corporation and Housing New Zealand Limited debt.",
"y": 175496000
},
{
"name": "Weathertight Services",
"previous_y": 19559000,
"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.",
"y": 52662000
},
{
"name": "Wellington City Council Social Housing Assistance",
"previous_y": 37500000,
"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.",
"y": 43500000
},
{
"name": "Residential Tenancy and Unit Title Services",
"previous_y": 21524000,
"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.",
"y": 22328000
},
{
"name": "Acquisition and Development of properties under the Housing Act 1955",
"previous_y": 7796000,
"scope": "This appropriation is limited to acquiring, developing and modernising properties under the Housing Act 1955.",
"y": 19142000
},
{
"name": "Building Regulation and Control",
"previous_y": 18046000,
"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.",
"y": 16214000
},
{
"name": "HNZC Housing Support Services",
"previous_y": 10119000,
"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.",
"y": 15343000
},
{
"name": "Occupational Licensing",
"previous_y": 8984000,
"scope": "This appropriation is limited to the development, implementation and maintenance of the registration and licensing regimes for building practitioners and electrical workers.",
"y": 9966000
},
{
"name": "Canterbury Earthquakes: Emergency and Temporary Accommodation",
"previous_y": 7421000,
"scope": "This appropriation is limited to operating expenses incurred on emergency and temporary accommodation for people displaced by the Canterbury earthquakes.",
"y": 9517000
},
{
"name": "Acquisition and Improvement of Housing New Zealand Corporation state houses",
"previous_y": 18137000,
"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.",
"y": 9300000
},
{
"name": "Housing, Building and Construction Policy Advice",
"scope": "This appropriation is limited to the provision of policy advice to improve the performance of the building and housing sector; develop an effective social housing market; improve the efficiency and adequacy of support for people in housing need; monitor and provide information on sector trends and outcomes, and provide advice on the membership and effectiveness of statutory boards.",
"y": 7815000
},
{
"name": "KiwiSaver Deposit Subsidy",
"previous_y": 2100000,
"scope": "To enable the provision of the KiwiSaver deposit subsidy for people who meet the required eligibility criteria.",
"y": 5200000
},
{
"name": "Increase in Debt Provision",
"previous_y": 5000000,
"scope": "Increase in provision for doubtful debts on Income Related Rents Crown Debt.",
"y": 5000000
},
{
"name": "Community Housing Rent Relief Programme",
"previous_y": 3968000,
"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.",
"y": 4150000
},
{
"name": "Department of Building and Housing - Capital Expenditure",
"previous_y": 1262000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Department of Building and Housing, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 4084000
},
{
"name": "Canterbury Earthquakes: Arranging and Managing Emergency and Temporary Accommodation",
"previous_y": 2207000,
"scope": "This appropriation is limited to the expenses incurred in arranging and managing emergency and temporary accommodation for people displaced by the Canterbury earthquakes.",
"y": 3154000
},
{
"name": "Contracted Housing Support Services",
"previous_y": 6911000,
"scope": "This appropriation is limited to the purchase of education, support and other services from third-party and iwi providers, by Housing New Zealand Corporation, to support target groups into improved housing outcomes.",
"y": 2400000
},
{
"name": "Housing Assistance",
"previous_y": 1659000,
"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.",
"y": 1729000
},
{
"name": "Management of Crown Properties held under the Housing Act 1955",
"previous_y": 1417000,
"scope": "This appropriation is limited to the administration and management of Crown owned properties held under the Housing Act 1955.",
"y": 1395000
},
{
"name": "Unwind of Discount Rate used in the Present Value Calculation of Direct Payments",
"scope": "This appropriation is limited to the expense incurred in unwinding the discount rate used in the present value calculation of the liability as the liability nears settlement.",
"y": 1100000
},
{
"name": "Performance Monitoring and Advice - Social Housing",
"previous_y": 641000,
"scope": "This appropriation is limited to the provision of advice to Ministers arising from the monitoring of Housing New Zealand Corporation\u2019s current and expected performance, and the monitoring of housing grants provided to Wellington City Council.",
"y": 794000
},
{
"name": "Weathertight Services: Guarantee Fee Subsidy",
"previous_y": 100000,
"scope": "This appropriation is limited to the expense reflecting the guarantee fee subsidy under the Weathertight Services Financial Assistance Package: Loan Guarantee scheme",
"y": 200000
},
{
"name": "Payments in respect of the Weathertight Services Loan Guarantees",
"scope": "This appropriation is limited to the payments to banks under the Weathertight Services Financial Assistance Package: Loan Guarantee scheme as authorised under section 65ZG of the Public Finance Act 1989.",
"y": 30000
},
{
"name": "Capital Injections to Housing New Zealand Corporation for Housing Activities",
"previous_y": 27000,
"scope": "Capital injections (debt or equity) to HNZC to give effect to Government policy decisions around stock acquisition, modernisation and other housing interventions.",
"y": 27000
}
],
"Department of Conservation": [
{
"name": "Management of Natural Heritage",
"previous_y": 156379000,
"scope": "This appropriation is limited to maintaining, restoring and protecting ecosystems, habitats and species.",
"y": 165906000
},
{
"name": "Management of Recreational Opportunities",
"previous_y": 129444000,
"scope": "This appropriation is limited to recreational facilities and services, and the management of business concessions.",
"y": 142279000
},
{
"name": "Department of Conservation - Capital Expenditure",
"previous_y": 54603000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Department of Conservation, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 53066000
},
{
"name": "Identification and Implementation of Protection for Natural and Historic Places",
"previous_y": 5528000,
"scope": "This appropriation is limited to identification and implementation of protection for natural and historic places.",
"y": 16793000
},
{
"name": "Conservation with the Community",
"previous_y": 16015000,
"scope": "This appropriation is limited to educational and public awareness services, and facilitation of community involvement and community-led conservation activities.",
"y": 15363000
},
{
"name": "NZ Biodiversity Funds",
"previous_y": 3940000,
"scope": "This appropriation is limited to the payment of grants: to provide private land managers with information and advice, or assistance with costs of pest and weed control, fencing and other biodiversity management actions; and to support community biodiversity restoration initiatives.",
"y": 10347000
},
{
"name": "Crown Land Acquisitions",
"previous_y": 6100000,
"scope": "This appropriation is limited to the purchase of property for the Conservation Estate.",
"y": 6500000
},
{
"name": "Milford Flood Protection",
"previous_y": 2800000,
"scope": "This appropriation is limited to flood protection works on the Cleddau River at Milford Sound.",
"y": 6186000
},
{
"name": "Policy Advice, Servicing the Minister and Statutory Bodies, and Statutory Planning",
"previous_y": 4924000,
"scope": "This appropriation is limited to policy advice, services to the Minister of Conservation and statutory bodies, and provision of statutory planning.",
"y": 5823000
},
{
"name": "Management of Historic Heritage",
"previous_y": 5643000,
"scope": "This appropriation is limited to the protection and conservation management of historic heritage.",
"y": 5661000
},
{
"name": "Crown Contribution to Regional Pest Management Strategies",
"previous_y": 2865000,
"scope": "This appropriation is limited to controlling weed and animal pests on lands administered by the Department of Conservation to meet negotiated outcomes of regional pest management strategies.",
"y": 2998000
},
{
"name": "Loss on Disposal of Crown Property, Plant and Equipment",
"previous_y": 50000,
"scope": "This appropriation is limited to losses incurred on the disposal of Crown property, plant and equipment.",
"y": 2575000
},
{
"name": "Management Services - Natural and Historic Places",
"previous_y": 1506000,
"scope": "This appropriation is limited to management services for properties with historical or natural significance, including maintenance work, access for the public and management advice on covenanted properties.",
"y": 1506000
},
{
"name": "Purchase and Development of Reserves",
"previous_y": 880000,
"scope": "This appropriation is limited to the purchase of conservation land, including the purchase of reserves, and any associated administration costs as provided for under the Reserves Act 1977.",
"y": 1500000
},
{
"name": "Depreciation - Crown Property, Plant and Equipment",
"previous_y": 635000,
"scope": "This appropriation is limited to the depreciation on Crown property, plant and equipment on Crown land administered by the Department of Conservation.",
"y": 934000
},
{
"name": "Payment of Rates on Properties for Concessionaires",
"previous_y": 643000,
"scope": "This appropriation is limited to the payment of rates: on reserves; conservation areas that are used for private or commercial purposes; and for services provided by a local authority.",
"y": 839000
},
{
"name": "Matauranga Maori Fund",
"previous_y": 600000,
"scope": "This appropriation is limited to making grants to support initiatives to protect traditional Maori knowledge relating to NZ\u2019s indigenous biodiversity.",
"y": 804000
},
{
"name": "Stewart Island Infrastructure",
"scope": "This appropriation is limited to assistance to the Southland District Council for additional community infrastructure arising from increased visitor numbers on Stewart Island.",
"y": 769000
},
{
"name": "Vesting of Reserves",
"previous_y": 9450000,
"scope": "This appropriation is limited to the costs incurred in vesting Crown reserves in third parties, and Crown contributions towards the purchase of reserves by third parties.",
"y": 650000
},
{
"name": "Subscriptions to International Organisations",
"previous_y": 405000,
"scope": "This appropriation is limited to meeting annual subscriptions to international conservation organisations.",
"y": 405000
},
{
"name": "Waikaremoana Lakebed Lease",
"previous_y": 241000,
"scope": "This appropriation is limited to payments made under the Lake Waikaremoana Act 1971 for the lease of the lakebed and foreshore for conservation purposes.",
"y": 241000
},
{
"name": "Provision for Bad and Doubtful Debts",
"previous_y": 100000,
"scope": "This appropriation is limited to the write-off of debts relating to Crown Revenue.",
"y": 100000
},
{
"name": "Compensation Payments",
"previous_y": 30000,
"scope": "This appropriation is limited to making obligatory compensation payments: when esplanade reserves are created, and upon vesting of coastal marine areas in the Crown.",
"y": 60000
},
{
"name": "Moutoa Gardens/Pakaitore",
"previous_y": 23000,
"scope": "This appropriation is limited to the ongoing management and maintenance of the Moutoa Gardens Reserve.",
"y": 23000
}
],
"Department of Corrections ": [
{
"name": "Custody of Sentenced Prisoners",
"previous_y": 572430000,
"scope": "This output class is limited to the provision of custodial services for offenders sentenced to imprisonment.",
"y": 584101000
},
{
"name": "Sentences and Orders Served in the Community",
"previous_y": 195490000,
"scope": "This appropriation is limited to the management and delivery of sentences and orders served in the community.",
"y": 199648000
},
{
"name": "Department of Corrections - Capital Expenditure",
"previous_y": 203798000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Department of Corrections, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 187746000
},
{
"name": "Custody of Remand Prisoners",
"previous_y": 177011000,
"scope": "This output class is limited to the provision of custodial services for remand prisoners (people awaiting trial, and offenders convicted but not yet sentenced).",
"y": 177265000
},
{
"name": "Rehabilitation and Reintegration",
"previous_y": 135053000,
"scope": "This appropriation is limited to the provision of case management and interventions designed to address the underlying causes of criminal re-offending.",
"y": 140820000
},
{
"name": "Information and Administrative Services to the Judiciary and New Zealand Parole Board",
"previous_y": 66090000,
"scope": "This appropriation is limited to the provision of information about offenders to victims of crime, the Judiciary and the New Zealand Parole Board, and the provision of administrative, financial and secretariat services to the New Zealand Parole Board.",
"y": 57005000
},
{
"name": "Management of Third Party Custodial Services",
"previous_y": 24956000,
"scope": "This appropriation is limited to preparing for and managing contracts for the provision of custodial services by third parties.",
"y": 8855000
},
{
"name": "Policy Advice and Ministerial Services",
"previous_y": 5067000,
"scope": "This appropriation is limited to the provision of ministerial services, the development of policies and the provision of policy advice.",
"y": 5129000
}
],
"Department of Internal Affairs": [
{
"name": "Identity Services",
"previous_y": 112329000,
"scope": "Providing effective management of New Zealand's records of identity including: issuing New Zealand passports; processing citizenship applications; and registering births, deaths, marriages and civil unions; developing authorised information-matching programmes with specified government agencies; providing data or data verification to government agencies, to enhance border processes and facilitate travel; working across government to develop systems and processes for the verification and authentication of identity and to facilitate good practice based on Evidence of Identity Standard.",
"y": 125536000
},
{
"name": "Department of Internal Affairs - Capital Expenditure",
"previous_y": 44209000,
"scope": "This appropriation is limited to the purchase or development of assets by and for the use of the Department of Internal Affairs, as authorised by section 24(1) of the Public Finance Act 1989.",
"y": 72891000
},
{
"name": "Rates Rebate Scheme",
"previous_y": 51872000,
"scope": "Assistance with rates for low-income residential ratepayers.",
"y": 60000000
},
{
"name": "Access to Information",
"previous_y": 27631000,
"scope": "The provision of services which assist access to library collections and other information, including cataloguing and describing, the provision of tools and finding aids, providing access to the collections, and the purchase of information; and administration of the Public Lending Right for New Zealand Authors Scheme.",
"y": 32787000
},
{
"name": "Support Services to Members of the Executive",
"previous_y": 26786000,
"scope": "This appropriation is limited to providing support services for Members of the Executive, including in their capacity as a Member of Parliament, primarily through office personnel and administrative services, information and communication technology, and the provision and management of residential accommodation.",
"y": 26852000
},
{
"name": "Regulatory Services",
"previous_y": 26248000,
"scope": "This appropriation is limited to operational policy advice and services to regulate gambling activity, objectionable material, unsolicited electronic messages, and anti-money laundering and countering financing of terrorism.",
"y": 25982000
},
{
"name": "Collecting and Preserving Information",
"previous_y": 23674000,
"scope": "Collecting and preserving published and unpublished items for the National Library and Alexander Turnbull Library collections.",
"y": 23070000
},
{
"name": "Archives Services",
"scope": "This output class is limited to management of public archives in both physical and digital formats on behalf of the Crown, the provision of public access to archives held by Archives New Zealand, and support for community, iwi and hapu organisations and other jurisdictions in preserving and managing their own records and archives.",
"y": 19674000
},
{
"name": "Library and Information Services to Schools",
"previous_y": 13445000,
"scope": "The provision of library and information services and products to schools, in support of the National Curriculum.",
"y": 14577000
},
{
"name": "Community Organisation Grants Scheme",
"previous_y": 14000000,
"scope": "Locally distributed grants to community organisations for programmes that direct social services provision to disadvantaged community sectors.",
"y": 12500000
},
{
"name": "Members of the Executive \u2013 Travel",
"previous_y": 11590000,
"scope": "This appropriation is limited to the cost of domestic and international travel by Members of the Executive and approved accompanying parties.",
"y": 11790000
},
{
"name": "Support Services for Grant Funding Bodies",
"scope": "This output class is limited to the provision of operational and secretariat support for grant funding bodies, and includes supporting member appointment processes. The focus of operational support is on processing grant applications and grant decisions on behalf of the grant funding bodies.",
"y": 10004000
},
{
"name": "Executive Council and Members of the Executive - Salaries and Allowances",
"previous_y": 8385000,
"scope": "This appropriation is limited to the cost of salaries and allowances for the Executive Council and Members of the Executive, as authorised by section 2 of the Civil List Act 1979.",
"y": 8400000
},
{
"name": "VIP Transport Services",
"previous_y": 7468000,
"scope": "This appropriation is limited to providing chauffeur-driven and self-drive vehicle services for parties specified in legislation, as authorised by Members of the Executive, or who otherwise meet qualifying criteria.",
"y": 7947000
},
{
"name": "Government Technology Services",
"previous_y": 9598000,
"scope": "This appropriation is limited to the development, deployment and operation of technology services across the State sector.",
"y": 6989000
},
{
"name": "Policy Advice",
"previous_y": 5597000,
"scope": "This output class is limited to the provision of policy advice and Ministerial support services, including monitoring of Crown entities, with a focus on the role of the community and voluntary sector.",
"y": 6918000
},
{
"name": "Information and Advisory Services",
"previous_y": 5571000,
"scope": "This output class is limited to publishing the New Zealand Gazette; authenticating official documents; supporting commissions of inquiry and similar bodies; and coordinating the congratulatory message service.",
"y": 6549000
},
{
"name": "Policy Advice - Local Government",
"previous_y": 6731000,
"scope": "Provision of policy advice on, and information relating to, local government issues, including ministerial correspondence and questions.",
"y": 6489000
},
{
"name": "Community Advisory Services",
"previous_y": 5935000,
"scope": "This output class is limited to advisory services to assist and guide community development activities and to assist government agencies engage and interact with communities and community groups.",
"y": 6386000
},
{
"name": "Services for Ethnic Affairs",
"previous_y": 5948000,
"scope": "Policy advice on ethnic affairs and provision of advisory and information services to ethnic communities; drafting ministerial correspondence and questions; operational and secretariat support for grant funding bodies; management of the contract for the telephone interpreting service (Language Line); and provision of information and training to ethnic communities and agencies using Language Line.",
"y": 6243000
},
{
"name": "Support Services, Information and Education",
"previous_y": 6664000,
"scope": "Development and implementation of operational policies and projects, advice, assistance and information to the civil defence and emergency management sector; development and delivery of long-term national programmes to raise individual and community awareness and preparedness.",
"y": 5794000
},
{
"name": "Charities - Administration",
"previous_y": 5066000,
"scope": "Funding for the Charities Commission to fulfil its functions outlined in the Charities Act 2005.",
"y": 5066000
},
{
"name": "Official Visits and Events Coordination",
"previous_y": 5407000,
"scope": "This appropriation is limited to managing programmes for visiting guests of Government, State and ministerial functions, co-ordinating a range of services in support of ceremonial and commemorative events and facilitating passage of New Zealand and foreign dignitaries and others authorised by the Crown into and out of New Zealand.",
"y": 4435000
},
{
"name": "Management of National Emergency Readiness, Response and Recovery",
"previous_y": 5064000,
"scope": "Management of the national emergency readiness, response and recovery, including: support to local civil defence emergency management organisations, maintaining the National Crisis Management Centre in a state of readiness, national training and education, coordination and management of central government's response and recovery activities and administration of related expenses.",
"y": 4201000
},
{
"name": "Community Development Scheme",
"previous_y": 2560000,
"scope": "Three-year grants to community organisations for projects to achieve improved economic, social and cultural wellbeing in areas such as health, education and crime prevention.",
"y": 4060000
},
{
"name": "Regulation of Public Sector Recordkeeping",
"scope": "This output class is limited to the administration of all aspects of the regulatory regime under the Public Records Act 2005, including where the Chief Archivist has statutory independence.",
"y": 4050000
},
{
"name": "Administration of Grants",
"previous_y": 13701000,
"scope": "This output class is limited to administration of the processes supporting government grant funding schemes, from receiving applications to monitoring grant recipients.",
"y": 3905000
},
{
"name": "Chatham Islands Council",
"previous_y": 2167000,
"scope": "Contribution to the cost of the Chatham Island Council meeting its statutory responsibilities.",
"y": 3733000
},
{
"name": "Information, Support and Regulatory Services - Local Government",
"previous_y": 3499000,
"scope": "Providing advisory and support services to the Local Government Commission in respect of its statutory functions, providing information to and about local government, administering the Local Government Act 2002 and other statutes, providing operational advice and support to the Minister of Local Government, administering the Local Electoral Act 2001, administering the Rates Rebate Scheme, providing regulatory and boating services for Lake Taupo (including providing the Harbourmaster and managing the Lake Taupo Landing Reserve) and governance and management of the National Dog Control Information Database.",
"y": 3433000
},
{
"name": "Cross-Government ICT Investment Proposals",
"scope": "This appropriation is limited to developing investment proposals relating to potential cross-government common ICT capability initiatives and detailed business cases for selected initiatives to inform investment decisions by Ministers",
"y": 3000000
},
{
"name": "Digital Literacy and Connection",
"previous_y": 2782000,
"scope": "This appropriation is limited to the provision of funding to selected communities to improve their access to digital tools and improve the capability of those communities in the use of digital tools.",
"y": 2782000
},
{
"name": "Anti-Money Laundering and Countering Financing of Terrorism",
"previous_y": 1442000,
"scope": "This appropriation is limited to supervision functions carried out in respect of reporting entities for which the Department of Internal Affairs is the relevant supervisor under the Anti-Money Laundering and Countering Financing of Terrorism Act.",
"y": 2500000
},
{
"name": "Emergency Expenses",
"previous_y": 19222000,
"scope": "Payments from the Crown to meet emergency expenses in line with criteria as detailed in the National CDEM Plan.",
"y": 2000000
},
{
"name": "Public Lending Right for New Zealand Authors",
"previous_y": 2000000,
"scope": "This appropriation is limited to payment to New Zealand authors in recognition that their books are available for use in New Zealand libraries.",
"y": 2000000
},
{
"name": "Classification of Films, Videos and Publications",
"previous_y": 1960000,
"scope": "The examination and classification of films, videos and publications by the Office of Film and Literature Classification under the Films, Videos, and Publications Classification Act 1993. Provision of information and research on classification procedures and systems.",
"y": 1960000
},
{
"name": "Crown-owned Assets at Lake Taupo - Maintenance Costs",
"scope": "This appropriation is limited to costs for maintaining Crown-owned assets, primarily navigational equipment, ramps, marinas and jetties, at Lake Taupo.",
"y": 1797000
},
{
"name": "Heritage Collections - Annual",
"previous_y": 1546000,
"scope": "Purchase of material for the Alexander Turnbull Library collections held and managed by the National Library.",
"y": 1546000
},
{
"name": "Tuwharetoa Maori Trust Board",
"previous_y": 1500000,
"scope": "This appropriation is limited to payment to Tuwharetoa Maori Trust Board to provide for continued public access to Lake Taupo, based upon a 2007 agreement between the Crown and the Tuwharetoa Maori Trust Board.",
"y": 1500000
},
{
"name": "Pike River Royal Commission of Inquiry \u2013 Legal representation and assistance",
"previous_y": 1077000,
"scope": "This appropriation is limited to meeting the costs of providing independent legal counsel to the families of the deceased Pike River miners, and financial assistance to the employees of, and contractors to, the Pike River Mine to obtain legal assistance in respect of the Royal Commission of Inquiry.",
"y": 1464000
},
{
"name": "Policy Advice and Statutory Servicing",
"previous_y": 899000,
"scope": "Policy advice on the role of information in New Zealand's cultural and economic life, including services to the Minister Responsible for the National Library, the support of the advisory bodies established under the National Library of New Zealand (Te Puna Matauranga o Aotearoa) Act 2003 and the Public Lending Right for New Zealand Authors Act 2008.",