-
Notifications
You must be signed in to change notification settings - Fork 0
/
incomes-2011.json
991 lines (991 loc) · 29.2 KB
/
incomes-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
{
"dept_totals": {
"Department of Building and Housing": {
"nzd": 195673000,
"previous_nzd": 186950000
},
"Department of Conservation": {
"nzd": 23524000,
"previous_nzd": 22470000
},
"Department of Internal Affairs": {
"nzd": 60364000,
"previous_nzd": 505000
},
"Department of Labour": {
"nzd": 55343000,
"previous_nzd": 55343000
},
"Department of the Prime Minister and Cabinet": {
"nzd": 0,
"previous_nzd": 30000
},
"Inland Revenue Department": {
"nzd": 51384500000,
"previous_nzd": 48434500000
},
"Land Information New Zealand": {
"nzd": 44167000,
"previous_nzd": 56060000
},
"Ministry for Culture and Heritage": {
"nzd": 0,
"previous_nzd": 7000
},
"Ministry for the Environment": {
"nzd": 405530000,
"previous_nzd": 610313000
},
"Ministry of Agriculture and Forestry": {
"nzd": 170711000,
"previous_nzd": 178117000
},
"Ministry of Defence": {
"nzd": 236937000,
"previous_nzd": 135997000
},
"Ministry of Economic Development": {
"nzd": 546460000,
"previous_nzd": 591718000
},
"Ministry of Education ": {
"nzd": 72799000,
"previous_nzd": 83370000
},
"Ministry of Health": {
"nzd": 637337000,
"previous_nzd": 639087000
},
"Ministry of Justice": {
"nzd": 273736000,
"previous_nzd": 206307000
},
"Ministry of Science and Innovation": {
"nzd": 0,
"previous_nzd": 4371000
},
"Ministry of Social Development": {
"nzd": 707015000,
"previous_nzd": 685846000
},
"Ministry of Transport": {
"nzd": 1260434000,
"previous_nzd": 1206550000
},
"New Zealand Customs Service": {
"nzd": 11734080000,
"previous_nzd": 10575080000
},
"New Zealand Police": {
"nzd": 83200000,
"previous_nzd": 83200000
},
"State Services Commission": {
"nzd": 12909000,
"previous_nzd": 11410000
},
"Te Puni Kokiri": {
"nzd": 10000,
"previous_nzd": 10000
},
"The Treasury": {
"nzd": 3482725000,
"previous_nzd": 3891403000
}
},
"grand_total": {
"nzd": 71387454000,
"previous_nzd": 67658644000
},
"series_for_budget": [
[
"Inland Revenue Department",
51384500000
],
[
"New Zealand Customs Service",
11734080000
],
[
"The Treasury",
3482725000
],
[
"Ministry of Transport",
1260434000
],
[
"Ministry of Social Development",
707015000
],
[
"Ministry of Health",
637337000
],
[
"Ministry of Economic Development",
546460000
],
[
"Ministry for the Environment",
405530000
],
[
"Ministry of Justice",
273736000
],
[
"Ministry of Defence",
236937000
],
[
"Department of Building and Housing",
195673000
],
[
"Ministry of Agriculture and Forestry",
170711000
],
[
"New Zealand Police",
83200000
],
[
"Ministry of Education ",
72799000
],
[
"Department of Internal Affairs",
60364000
],
[
"Department of Labour",
55343000
],
[
"Land Information New Zealand",
44167000
],
[
"Department of Conservation",
23524000
],
[
"State Services Commission",
12909000
],
[
"Te Puni Kokiri",
10000
],
[
"Ministry of Science and Innovation",
0
],
[
"Department of the Prime Minister and Cabinet",
0
],
[
"Ministry for Culture and Heritage",
0
]
],
"series_for_dept": {
"Department of Building and Housing": [
{
"name": "Interest on Housing New Zealand Corporation Loans",
"previous_y": 114200000,
"y": 116600000
},
{
"name": "Dividend from HNZC",
"previous_y": 71000000,
"y": 62000000
},
{
"name": "Acquisition and Development of properties under the Housing Act 1955",
"y": 16873000
},
{
"name": "Weathertight Services: Loan Guarantee Fees",
"previous_y": 100000,
"y": 200000
}
],
"Department of Conservation": [
{
"name": "Concessions, Leases and Licences",
"previous_y": 13500000,
"y": 12200000
},
{
"name": "Disposal of Conservation Land",
"previous_y": 6000000,
"y": 6000000
},
{
"name": "Disposal of Reserves",
"previous_y": 260000,
"y": 1800000
},
{
"name": "Old Government Building Rental",
"previous_y": 1760000,
"y": 1760000
},
{
"name": "Rates Recovery from Concessionaires",
"previous_y": 500000,
"y": 964000
},
{
"name": "Revenue for Land Purchases",
"previous_y": 250000,
"y": 500000
},
{
"name": "Turnbull House Revenue",
"previous_y": 200000,
"y": 200000
},
{
"name": "Contributions for Crown Property, Plant and Equipment",
"y": 100000
}
],
"Department of Internal Affairs": [
{
"name": "Repayment of loan from the Auckland Transition Agency",
"y": 59700000
},
{
"name": "Lake Taupo fee revenue",
"y": 414000
},
{
"name": "Local Government Debt Vehicle Interest Received",
"previous_y": 125000,
"y": 250000
}
],
"Department of Labour": [
{
"name": "Health and Safety in Employment Levy",
"previous_y": 43911000,
"y": 43911000
},
{
"name": "Migrant Levy",
"previous_y": 9715000,
"y": 9715000
},
{
"name": "Immigration Adviser Levy",
"previous_y": 982000,
"y": 982000
},
{
"name": "Recovery of Remuneration Authority Costs of Setting Local Authority Members' Remuneration",
"previous_y": 262000,
"y": 262000
},
{
"name": "Infringement Notice Fines",
"previous_y": 247000,
"y": 247000
},
{
"name": "Employment Relations Authority Fees",
"previous_y": 193000,
"y": 193000
},
{
"name": "Health and Safety Fees and Licences",
"previous_y": 33000,
"y": 33000
}
],
"Department of the Prime Minister and Cabinet": [],
"Inland Revenue Department": [
{
"name": "Source Deductions",
"previous_y": 21161000000,
"y": 21636000000
},
{
"name": "Goods and Services Tax (IRD)",
"previous_y": 12090000000,
"y": 13235000000
},
{
"name": "Companies",
"previous_y": 7834000000,
"y": 8423000000
},
{
"name": "Other Persons",
"previous_y": 2141000000,
"y": 2686000000
},
{
"name": "Withholding Taxes",
"previous_y": 2409000000,
"y": 2383000000
},
{
"name": "Child Support Collections",
"previous_y": 747000000,
"y": 910000000
},
{
"name": "Student Loans - Receipts",
"previous_y": 683000000,
"y": 727000000
},
{
"name": "Interest on Impaired Student Loans",
"previous_y": 437000000,
"y": 480000000
},
{
"name": "Fringe Benefit Tax",
"previous_y": 461000000,
"y": 430000000
},
{
"name": "Gaming Duties",
"previous_y": 263000000,
"y": 268000000
},
{
"name": "Income Equalisation Reserve Account",
"previous_y": 90000000,
"y": 90000000
},
{
"name": "Other Indirect Taxes",
"previous_y": 84000000,
"y": 84000000
},
{
"name": "Environmental Restoration Accounts Scheme",
"previous_y": 20000000,
"y": 20000000
},
{
"name": "Unclaimed Monies",
"previous_y": 7000000,
"y": 7000000
},
{
"name": "Stamp and Cheque Duties",
"previous_y": 4000000,
"y": 4000000
},
{
"name": "Adverse Income Equalisation Account",
"previous_y": 1500000,
"y": 1500000
}
],
"Land Information New Zealand": [
{
"name": "Transit Sales",
"previous_y": 27188000,
"y": 33000000
},
{
"name": "Surplus Government Properties - Sales",
"previous_y": 21354000,
"y": 6000000
},
{
"name": "Surplus Government Properties - Rents",
"previous_y": 2184000,
"y": 2235000
},
{
"name": "Pastoral Lease Rentals",
"previous_y": 1893000,
"y": 1902000
},
{
"name": "Land Tenure Reform Sales",
"previous_y": 3401000,
"y": 959000
},
{
"name": "Sundry Operating Revenue",
"previous_y": 40000,
"y": 71000
}
],
"Ministry for Culture and Heritage": [],
"Ministry for the Environment": [
{
"name": "Emissions Trading",
"previous_y": 378211000,
"y": 379130000
},
{
"name": "Waste Disposal Levy",
"previous_y": 26000000,
"y": 26000000
},
{
"name": "Coastal Royalties",
"previous_y": 400000,
"y": 400000
}
],
"Ministry of Agriculture and Forestry": [
{
"name": "Crown Forestry Assets",
"previous_y": 126133000,
"y": 128010000
},
{
"name": "Cost Recovery",
"previous_y": 30523000,
"y": 33273000
},
{
"name": "Deemed Values",
"previous_y": 4300000,
"y": 2500000
},
{
"name": "Forestry Encouragement Loan Interest",
"previous_y": 2351000,
"y": 2100000
},
{
"name": "Forestry Encouragement Loans",
"previous_y": 3198000,
"y": 1900000
},
{
"name": "Conservation Levy",
"previous_y": 1879000,
"y": 1053000
},
{
"name": "Biosecurity Act 1993 Fines",
"previous_y": 1595000,
"y": 1000000
},
{
"name": "Levy Charged Under the Dairy Industry Restructuring Act",
"previous_y": 697000,
"y": 250000
},
{
"name": "New Zealand Emissions Trading Scheme Fees",
"previous_y": 242000,
"y": 200000
},
{
"name": "Fisheries Revenue from Forfeitures",
"previous_y": 1700000,
"y": 150000
},
{
"name": "Infringement Notice Revenue",
"previous_y": 160000,
"y": 125000
},
{
"name": "Sale of Quota Shares and ACE",
"previous_y": 2320000,
"y": 100000
},
{
"name": "Other Revenue",
"previous_y": 60000,
"y": 50000
}
],
"Ministry of Defence": [
{
"name": "Defence Equipment",
"previous_y": 135797000,
"y": 236837000
},
{
"name": "Crown Interest",
"previous_y": 200000,
"y": 100000
}
],
"Ministry of Economic Development": [
{
"name": "Royalties - Petroleum",
"previous_y": 380000000,
"y": 345950000
},
{
"name": "Levy on Electricity Industry",
"previous_y": 70954000,
"y": 92243000
},
{
"name": "Energy Resource Levies - Gas",
"previous_y": 28000000,
"y": 30090000
},
{
"name": "Radio Spectrum Rights",
"previous_y": 12450000,
"y": 22584000
},
{
"name": "Proceeds of Crime",
"previous_y": 9250000,
"y": 9250000
},
{
"name": "Telecommunications Levy",
"previous_y": 7290000,
"y": 7791000
},
{
"name": "Energy Resource Levies - Coal",
"previous_y": 7784000,
"y": 7784000
},
{
"name": "Financial Advisers Act (FAA) Fees and Charges",
"previous_y": 6091000,
"y": 6263000
},
{
"name": "Levy on Electricity Line Businesses",
"previous_y": 7327000,
"y": 4522000
},
{
"name": "Whirinaki Availability Recovered",
"previous_y": 13000000,
"y": 4300000
},
{
"name": "Radio Spectrum Financing",
"y": 4156000
},
{
"name": "Royalties - Minerals",
"previous_y": 5000000,
"y": 3388000
},
{
"name": "Repayment of Crown Energy Efficiency Loans.",
"previous_y": 2000000,
"y": 2000000
},
{
"name": "Royalties - Coal",
"previous_y": 1912000,
"y": 1912000
},
{
"name": "Whirinaki Operating and Maintenance Recovered",
"previous_y": 4250000,
"y": 1700000
},
{
"name": "Financial Service Providers Reserve Dispute Resolution Scheme",
"previous_y": 250000,
"y": 1694000
},
{
"name": "Control of Natural Gas Services",
"previous_y": 1439000,
"y": 1300000
},
{
"name": "Accounting Standards Review Board",
"previous_y": 830000,
"y": 830000
},
{
"name": "Levy on Regulated Airports",
"previous_y": 1319000,
"y": 400000
},
{
"name": "Whirinaki Electricity Generation",
"previous_y": 100000,
"y": 100000
},
{
"name": "Residual Ministry of Energy Commitments",
"previous_y": 80000,
"y": 80000
},
{
"name": "Ironsands Royalties",
"previous_y": 63000,
"y": 63000
},
{
"name": "Rent from Reserve Lands",
"previous_y": 113000,
"y": 40000
},
{
"name": "Trade Measurement Unit Infringement Fees",
"previous_y": 20000,
"y": 20000
},
{
"name": "Levy on Electricity Industry Participants",
"previous_y": 26175000,
"y": -2000000
}
],
"Ministry of Education ": [
{
"name": "State Sector Retirement Savings Scheme Recoveries",
"previous_y": 61998000,
"y": 64647000
},
{
"name": "Overseas Students' Fees",
"previous_y": 3757000,
"y": 3757000
},
{
"name": "Export Education Levies",
"previous_y": 3521000,
"y": 3521000
},
{
"name": "Miscellaneous Receipts",
"previous_y": 592000,
"y": 617000
},
{
"name": "Tertiary Investments - Interest",
"previous_y": 122000,
"y": 122000
},
{
"name": "Roll Audit and Staffing Recoveries",
"previous_y": 110000,
"y": 110000
},
{
"name": "Payroll Receipts",
"previous_y": 25000,
"y": 25000
}
],
"Ministry of Health": [
{
"name": "ACC - Reimbursement of Non-Earners Account",
"previous_y": 248002000,
"y": 255516000
},
{
"name": "Payment of Capital Charge by DHBs",
"previous_y": 158464000,
"y": 158464000
},
{
"name": "ACC - Reimbursement of Earners' Non-Work-Related Public Hospital Costs",
"previous_y": 75278000,
"y": 77563000
},
{
"name": "ACC - Reimbursement of Motor Vehicle-Related Public Hospital Costs",
"previous_y": 62360000,
"y": 64255000
},
{
"name": "ACC - Reimbursement of Work-Related Public Hospital Costs",
"previous_y": 26264000,
"y": 27060000
},
{
"name": "Repayment of Residential Care Loans",
"previous_y": 24000000,
"y": 24000000
},
{
"name": "Equity repayments by DHBs",
"previous_y": 12499000,
"y": 12499000
},
{
"name": "ACC - Reimbursement of Complex Burns Costs",
"previous_y": 7325000,
"y": 7579000
},
{
"name": "ACC - Reimbursement of Self-Employed Public Hospital Costs",
"previous_y": 7170000,
"y": 7388000
},
{
"name": "ACC - Reimbursement of Medical Misadventure Costs",
"previous_y": 2292000,
"y": 2362000
},
{
"name": "Residual Health Management Rental",
"previous_y": 633000,
"y": 651000
}
],
"Ministry of Justice": [
{
"name": "Court Fines",
"previous_y": 198382000,
"y": 200028000
},
{
"name": "Recoveries from Legally Aided Persons",
"y": 33000000
},
{
"name": "Miscellaneous receipts received on behalf of the Crown",
"y": 28000000
},
{
"name": "Landbank Properties",
"previous_y": 7200000,
"y": 8130000
},
{
"name": "Receipts from the Law Society's Special Fund for Community Law Centres",
"y": 3853000
},
{
"name": "Repayments of Judicial Salaries from Crown Entities",
"previous_y": 476000,
"y": 476000
},
{
"name": "Licensing Fund",
"previous_y": 200000,
"y": 200000
},
{
"name": "Money Forfeited to the Crown",
"previous_y": 49000,
"y": 49000
}
],
"Ministry of Science and Innovation": [],
"Ministry of Social Development": [
{
"name": "Benefit Recoveries - Current Debt",
"previous_y": 249246000,
"y": 255996000
},
{
"name": "Overseas Pension Recoveries",
"previous_y": 173940000,
"y": 192608000
},
{
"name": "Student Loans - Repayment of Principal",
"previous_y": 103455000,
"y": 106529000
},
{
"name": "Benefit Recoveries - Non-Current Debt",
"previous_y": 81138000,
"y": 84126000
},
{
"name": "Interest Revenue",
"previous_y": 64159000,
"y": 53591000
},
{
"name": "Student Loan - Administration Fee",
"previous_y": 12020000,
"y": 12495000
},
{
"name": "Benefit Recoveries - Liable Parent Contributions",
"previous_y": 1624000,
"y": 1406000
},
{
"name": "Maintenance Capitalisation",
"previous_y": 264000,
"y": 264000
}
],
"Ministry of Transport": [
{
"name": "Road User Charges",
"previous_y": 995446000,
"y": 1049109000
},
{
"name": "Motor Vehicle Registration",
"previous_y": 168987000,
"y": 167811000
},
{
"name": "Motor Vehicle Registration fee-administration cost",
"previous_y": 45327000,
"y": 46206000
},
{
"name": "Road User Charge transaction fee",
"previous_y": 15137000,
"y": 16886000
},
{
"name": "Motor Vehicle Registration Recoveries",
"previous_y": 10500000,
"y": 10500000
},
{
"name": "Northern Gateway Toll Road Revenue",
"previous_y": 5803000,
"y": 7000000
},
{
"name": "Infringements",
"previous_y": 100000,
"y": 100000
},
{
"name": "Fuel Excise Duty Refunds",
"previous_y": -34750000,
"y": -37178000
}
],
"New Zealand Customs Service": [
{
"name": "Goods and Services Tax",
"previous_y": 6824000000,
"y": 7842000000
},
{
"name": "Customs Duty",
"previous_y": 1991000000,
"y": 2053000000
},
{
"name": "Excise Duty",
"previous_y": 1760000000,
"y": 1839000000
},
{
"name": "Sale of Seized Goods",
"previous_y": 80000,
"y": 80000
}
],
"New Zealand Police": [
{
"name": "Infringement Fees",
"previous_y": 82700000,
"y": 82700000
},
{
"name": "Sale of Unclaimed Property",
"previous_y": 500000,
"y": 500000
}
],
"State Services Commission": [
{
"name": "Reimbursement of Chief Executives' Remuneration",
"previous_y": 11410000,
"y": 12909000
}
],
"Te Puni Kokiri": [
{
"name": "Mortgage Repayments Intended for HNZC",
"previous_y": 10000,
"y": 10000
}
],
"The Treasury": [
{
"name": "Capital Charge - Departments",
"previous_y": 1650368000,
"y": 1790182000
},
{
"name": "Other Current Revenue",
"previous_y": 311158000,
"y": 472830000
},
{
"name": "Interest from Securities and Deposits",
"previous_y": 347159000,
"y": 425895000
},
{
"name": "Dividends from SOEs",
"previous_y": 888758000,
"y": 408990000
},
{
"name": "Reserve Bank Surplus",
"previous_y": 290000000,
"y": 210000000
},
{
"name": "Crown Wholesale Guarantee Facility Fees",
"previous_y": 80356000,
"y": 67451000
},
{
"name": "Employers' Superannuation Contributions",
"previous_y": 55000000,
"y": 55000000
},
{
"name": "Rentals from Crown Overseas Properties",
"previous_y": 10600000,
"y": 14500000
},
{
"name": "Dividends from Crown Entities",
"previous_y": 4871000,
"y": 12132000
},
{
"name": "Earthquake Commission Guarantee Fee",
"previous_y": 10000000,
"y": 10000000
},
{
"name": "Crown Deposit Guarantee Scheme Fees",
"previous_y": 35498000,
"y": 6336000
},
{
"name": "Export Credit Office",
"previous_y": 4802000,
"y": 5189000
},
{
"name": "Dividends - Other",
"previous_y": 2269000,
"y": 2351000
},
{
"name": "Other Interest",
"previous_y": 5661000,
"y": 1369000
},
{
"name": "Unclaimed Money",
"previous_y": 1724000,
"y": 500000
}
]
}
}