-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
2088 lines (2088 loc) · 96 KB
/
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
{
"@context": "https://www.data.govt.nz/catalog.jsonld",
"@id": "https://www.stats.govt.nz/data.json",
"@type": "dcat:Catalog",
"conformsTo": "https://www.data.govt.nz/toolkit/schema",
"dataset":[
{
"title": "Statistics New Zealand Chief Executive expenses",
"description": "Report of business expenses or gifts incurred by the Government Statistician as chief executive.",
"identifier": "https://www.stats.govt.nz/corporate/",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"chief executive",
"government statistician",
"open government",
"statistics"
],
"issued": "2012-01-4",
"publisher": {
"name": "Stats NZ"
},
"contactPoint": {
"fn": "Finance enquiry",
"hasEmail": "julie.young@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/corporate/",
"accrualPeriodicity": "R/P1Y",
"theme": "State sector performance",
"distribution": [
{
"downloadURL": "https://catalogue.data.govt.nz/dataset/5793c164-9990-4f80-838d-825673cf45df/resource/c977667e-77a7-4980-9909-bfbc23544454/download/final-mark-sowden-ce-expenditure-jan-june.xlsx",
"format": "XLSX",
"title": "January 2020 - June 2020"
},
{
"downloadURL": "https://catalogue.data.govt.nz/dataset/5793c164-9990-4f80-838d-825673cf45df/resource/8cfbfcf9-d600-435c-85dd-93e200484256/download/final-liz-macpherson-ce-expenditure-july-dec.xlsx",
"format": "XLSX",
"title": "July 2019 - December 2019"
},
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Chief-executive-expenses-1-July-2017-30-June-2018.xlsx",
"format": "XLSX",
"title": "2017-2018 expenses"
}
]
},
{
"title": "Housing Net Worth Statistics",
"description": "Household net worth statistics give a picture of the net worth (wealth) of New Zealanders, by looking at their household assets - financial and non-financial - and their liabilities.",
"identifier": "https://www.stats.govt.nz/publications?filters=Household%20net%20worth%20statistics%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"economy",
"ethnicity",
"gender and sex",
"households",
"maori",
"older people",
"society"
],
"modified": "2018-12-14",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Household%20net%20worth%20statistics%2CInformation%20releases",
"accrualPeriodicity": "irregular",
"temporal": "2015/2017",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/f98d411f-4903-477a-b7ce-ffc70e85b378",
"title": "Metadata"
},
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Household-net-worth-statistics/Household-net-worth-statistics-Year-ended-June-2018/Download-data/household-net-worth-statistics-year-ended-june-2018-csv.zip",
"format": "ZIP",
"title": "Year ended 30 June 2018"
}
]
},
{
"title": "Wholesale Trade Survey",
"description": "Wholesale Trade statistics measure the sale or resale of new or used goods to retailers, including businesses or institutional users (including government). They provide short-term economic indicators for the wholesale trade sector.",
"identifier": "https://www.stats.govt.nz/publications?filters=Wholesale%20trade%20survey%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"commerce",
"exports",
"open government",
"trade",
"trade and industry",
"wholesale trade"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Wholesale%20trade%20survey%2CInformation%20releases",
"accrualPeriodicity": "R/P3M",
"theme": "Commerce, trade and industry",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Value-of-building-work-put-in-place/Value-of-building-work-put-in-place-March-2018-quarter/Download-data/value-of-building-work-put-in-place-march-2018-quarter.xlsx",
"format": "XLSX"
}
]
},
{
"title": "Well-being Statistics",
"description": "Well-being statistics provide information on a wide range of social and economic outcomes, and how these outcomes are distributed across different groups within the New Zealand population aged 15 years and over.",
"identifier": "https://www.stats.govt.nz/publications?filters=Well-being%20statistics%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"archives new zealand",
"economic",
"population",
"social",
"wellbeing"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Well-being%20statistics%2CInformation%20releases",
"accrualPeriodicity": "irregular",
"theme": "Population and society"
},
{
"title": "Value of Building Work Put in Place",
"description": "These releases provide estimates of the actual dollar value of work put in place on construction jobs in New Zealand. It measures activity within the construction sector.",
"identifier": "https://www.stats.govt.nz/publications?filters=Value%20of%20building%20work%20put%20in%20place%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"accommodation",
"additions",
"alterations",
"commercial",
"construction",
"educational",
"factories",
"hospitals",
"industrial buildings",
"new dwellings",
"nursing homes",
"out buildings",
"residential",
"seasonally adjusted",
"trend"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Value%20of%20building%20work%20put%20in%20place%2CInformation%20releases",
"accrualPeriodicity": "R/P3M",
"theme": "Building, construction and housing",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/~/media/Statistics/browse-categories/industry-sectors/tourism/tourism-sattellite-account-2016/tsa-16-prov-year-tables-1-16.xlsx",
"format": "XLSX",
"title": "Metadata"
}
]
},
{
"title": "Transport Vehicle Registration",
"description": "Transport vehicle registrations record motor vehicles currently licensed by type, and new and ex-overseas motor vehicles registered by type.",
"identifier": "https://www.stats.govt.nz/publications?filters=Transport%20vehicle%20registrations%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"economy",
"industries",
"transport"
],
"modified": "2019-02-20",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Transport%20vehicle%20registrations%2CInformation%20releases",
"accrualPeriodicity": "R/P1M",
"theme": "Transport",
"temporal": "1998/2018",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/infoshare",
"title": "Infoshare online tool"
}
]
},
{
"title": "Tourism Satellite Account",
"description": "These releases provide a picture of the role tourism plays in New Zealand, including the changing levels and impact of tourism activity, and the industry's contribution to the economy",
"identifier": "https://www.stats.govt.nz/publications?filters=Tourism%20satellite%20account%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"domestic",
"economics",
"expenditure",
"export",
"foreign exchange",
"gst",
"imports",
"international",
"tourism value"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Tourism%20satellite%20account%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Population and society",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/~/media/Statistics/Browse%20for%20stats/SubnationalPopulationProjections/HOTP2013base/SubnationalPopulationProjections2013baseHOTP.pdf",
"format": "PDF",
"title": "Metadata"
}
]
},
{
"title": "The Hedging of Overseas Foreign Currency Liabilities Survey",
"description": "The Hedging of Overseas Foreign Currency Liabilities Survey is a supplement of the Quarterly International Investment Survey (QIIS ). It asks for risk management information about respondent's foreign currency overseas liabilities.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"accrualPeriodicity": "R/P1Y",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/~/media/Statistics/Browse%20for%20stats/SubnationalPopulationEstimates/HOTPAtJun16/snpe-at30jun16-all-tables.xlsx",
"format": "XLSX"
},
{
"format": "XLS"
}
]
},
{
"title": "Subnational Population Estimates",
"description": "These provide population estimates in the 16 regional council areas (regions), 67 territorial authority areas, and 21 Auckland local board areas (LBAs) of New Zealand. This includes quarterly and annual changes in the resident population, and estimated population numbers for selected age groups.",
"identifier": "https://www.stats.govt.nz/publications?filters=Subnational%20population%20estimates%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"age group",
"area unit",
"births",
"deaths",
"estimated resident population",
"internal migration",
"international migration",
"population",
"population change",
"population growth",
"regional council",
"regional council areas",
"subnational",
"territoral authority",
"territorial authority areas",
"urban area"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Subnational%20population%20estimates%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Population and society",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Subnational-family-and-household-projections/Subnational-family-and-household-projections-2013base-update/Download-data/subnational-family-and-households-projections-13-38-update-tables.xlsx",
"format": "XLSX",
"title": "Metadata"
}
]
},
{
"title": "Subnational Ethnic Population Projections",
"description": "Subnational ethnic population projections indicate the future population living in New Zealand's 16 regional council areas (regions), 67 territorial authority areas (TAs), and 21 Auckland local board areas (LBAs) for four broad and overlapping ethnic groups: 'European or Other (including New Zealander)', M?ori, Asian, and Pacific.",
"identifier": "https://www.stats.govt.nz/publications?filters=Subnational%20ethnic%20population%20projections%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"asian",
"ethnic",
"european",
"european or other",
"maori",
"mori",
"new zealander",
"pacific",
"population",
"subnational"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Subnational%20ethnic%20population%20projections%2CInformation%20releases",
"accrualPeriodicity": "irregular",
"theme": "Population and society"
},
{
"title": "Statistics NZ's Chief Executive Business Expense Disclosure",
"description": "This documents business expenses and gifts incurred by the Government Statistician as Chief Executive for each financial year",
"identifier": "https://www.stats.govt.nz/about-us/corporate-publications",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/about-us/corporate-publications",
"accrualPeriodicity": "R/P1Y",
"theme": "State sector performance",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Chief-executive-expenses-1-July-2017-30-June-2018.xlsx",
"format": "XLS",
"title": "Business expense disclosure"
}
]
},
{
"title": "Statistics NZ submissions and advice to the Governance and Administration Select Committee (formerly known as Government and Administration Select Committee)",
"description": "The Governance and Administration Select Comittee provide written advice in response to public submissons by the committees' offical advisers. Documents of interest relating to Statistics New Zealand include Quarterly Reports to the Minister, Statistics New Zealand's Reponse to Annual Review Questions.",
"identifier": "https://www.parliament.nz/en/pb/sc/submissions-and-advice/?criteria.Keyword=Statistics&criteria.Author=Government+Administration+Committee&criteria.ParliamentNumber=-1&criteria.Timeframe=&criteria.DateFrom=&criteria.DateTo=",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Select Committee Office"
},
"contactPoint": {
"fn": "Select Committee Office"
},
"landingPage": "https://www.parliament.nz/en/pb/sc/submissions-and-advice/?criteria.Keyword=Statistics&criteria.Author=Government+Administration+Committee&criteria.ParliamentNumber=-1&criteria.Timeframe=&criteria.DateFrom=&criteria.DateTo=",
"theme": "State sector performance"
},
{
"title": "Statistics NZ Annual Report (Financial Statements)",
"description": "The financial statements in this report include an audit of a number of financial areas. These include the statement of financial position, statement of commitments, statement of contingent liabilities and contingent assets, the statement of comprehensive revenue and expense, statement of changes in equity, and statement of cash flows for the year ended on that date and the notes to the financial statements that include accounting policies and other explanatory information.",
"identifier": "https://www.stats.govt.nz/about-us/corporate-publications",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"annual report",
"financial statement"
],
"modified": "2018-10-16",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/about-us/corporate-publications",
"accrualPeriodicity": "R/P1Y",
"theme": "State sector performance",
"temporal": "2004/2018",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Annual-report-2018/Stats-NZ-Annual-Report-Full-WEB-1.pdf",
"format": "PDF",
"title": "Year ended 30 June 2018"
},
{
"downloadURL": "http://archive.stats.govt.nz/about_us/what-we-do/our-publications/annual-reports.aspx",
"format": "PDF",
"title": "Annual reports 2004-17"
}
]
},
{
"title": "Serious injury outcome indicators",
"description": "Serious injury outcome indicators shows trends in fatal, serious non-fatal, and serious (fatal and non-fatal) injuries for the whole population, M?ori, and children (aged under 15 years).",
"identifier": "https://www.stats.govt.nz/publications?filters=Serious%20injury%20outcome%20indicators%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"children",
"employment and unemployment",
"health",
"injuries",
"maori",
"society"
],
"issued": "2000",
"modified": "2018-10-1",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "Injury Data team",
"hasEmail": "Injury&Crimedata-SharedMailbox@stats.govt.nz."
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Serious%20injury%20outcome%20indicators%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Health",
"temporal": "1994/2017",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/ed2d795c-dd2e-457d-97ea-4249fcef2a93",
"title": "Metadata"
},
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Serious-injury-outcome-indicators/Serious-injury-outcome-indicators-2000-17/Download-data/serious-injury-outcome-indicators-2000-17-csv.zip",
"format": "ZIP",
"title": "2000-17 dataset"
},
{
"downloadURL": "http://nzdotstat.stats.govt.nz/wbos/Index.aspx?DataSetCode=TABLECODE7935",
"title": "Dataset using NZ.Stats online tool"
}
]
},
{
"title": "Screen Industry Survey",
"description": "These releases provide information on businesses involved in the screen industry, including production and post production activities, film and video distribution, film exhibition, and television broadcasting.",
"identifier": "https://www.stats.govt.nz/publications?filters=Screen%20industry%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"business",
"economy",
"employment and unemployment",
"industries"
],
"issued": "2006-08-31",
"modified": "2018-04-10",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Screen%20industry%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Arts, Culture and Heritage",
"temporal": "2004/2017",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/d5b98a1e-27ab-4792-8bd9-75d3f3493f44",
"title": "Metadata"
},
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Screen-industry/Screen-industry-2016-17/Download-data/screen-industry-2016-17-tables.xlsx",
"format": "XLS",
"title": "2016/17 dataset"
}
]
},
{
"title": "Ready-mixed concrete, secondary production",
"identifier": "https://www.stats.govt.nz/publications?filters=Ready-mixed%20concrete%20secondary%20production%20%28SEP%29%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"modified": "2019-02-8",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Ready-mixed%20concrete%20secondary%20production%20%28SEP%29%2CInformation%20releases",
"accrualPeriodicity": "R/P3M",
"temporal": "1992/2018",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/infoshare",
"title": "Infoshare online tool"
}
]
},
{
"title": "Property Transfer",
"description": "Property transfer statistics summarise the citizenship or visa status and tax residency of buyers and sellers of homes and land in New Zealand. They are are used to monitor tax obligations, and inform housing policy.",
"identifier": "https://www.stats.govt.nz/publications?filters=Property%20transfer%20statistics%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"dwellings",
"land",
"overseas people",
"specified estate in land"
],
"issued": "2018-06-7",
"modified": "2019-02-8",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Property%20transfer%20statistics%2CInformation%20releases",
"accrualPeriodicity": "R/P3M",
"temporal": "2013/",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/88b62a7f-7ce9-4c97-821e-e7d9505ef55e",
"title": "Metadata"
},
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Property-transfer-statistics/Property-transfer-statistics-December-2018-quarter/Download-data/property-transfer-statistics-december-2018-quarter-tables-csv.zip",
"format": "ZIP",
"title": "December 2018 quarter data"
},
{
"downloadURL": "http://www.stats.govt.nz/infoshare",
"title": "Infoshare data tool"
}
]
},
{
"title": "Productivity Measures Statistics",
"description": "Productivity statistics measure how efficiently inputs (capital and labour) are used within the economy to produce outputs.",
"identifier": "https://www.stats.govt.nz/publications?filters=Productivity%20statistics%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"economy",
"industries",
"productivity"
],
"issued": "2017-03-22",
"modified": "2018-02-22",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "productivity@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Productivity%20statistics%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Fiscal, tax and economics",
"temporal": "1978/2017",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Overseas-merchandise-trade/Overseas-merchandise-trade-April-2018/Download-data/overseas-merchandise-trade-April-2018.xlsx",
"format": "XLSX",
"title": "Metadata"
}
]
},
{
"title": "Overseas Merchandise Trade",
"description": "This information release provides statistical information on the importing and exporting of merchandise goods between New Zealand and other countries. Merchandise trade includes goods which add to or subtract from the material resources in New Zealand as a result of their movement in or out of the country. Data is obtained from the New Zealand Customs Service.",
"identifier": "https://www.stats.govt.nz/publications?filters=Overseas%20merchandise%20trade%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"agriculture",
"agriculture imports",
"cargo",
"commerce",
"exports",
"exports as gdp",
"fire extinguishers",
"fireworks",
"gdp",
"import",
"import export directory",
"importa and exports by category",
"imports",
"meat",
"merchandise trade",
"milk powder",
"mussels",
"nz customs",
"oil gas",
"open government",
"overseas trade",
"pyrotechnics",
"tariff",
"trade",
"trade and industry",
"trophy"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "Trade data team",
"hasEmail": "overseastrade@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Overseas%20merchandise%20trade%2CInformation%20releases",
"accrualPeriodicity": "R/P1M",
"theme": "Commerce, trade and industry",
"temporal": "1990/2018-12"
},
{
"title": "NZ's Environmental Reporting Series",
"description": "Statistics and information about the state of the New Zealand’s environment, co-published by Statistics NZ and the Ministry for the Environment.",
"identifier": "https://www.stats.govt.nz/publications?filters=New%20Zealand%27s%20environmental%20reporting%20series%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"air",
"environment"
],
"modified": "2018-10-18",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=New%20Zealand%27s%20environmental%20reporting%20series%2CInformation%20releases",
"accrualPeriodicity": "irregular",
"temporal": "2015/2017",
"distribution": [
{
"downloadURL": "https://data.mfe.govt.nz/data/category/environmental-reporting/air/",
"title": "Air data dataset"
}
]
},
{
"title": "National Accounts input-output tables",
"description": "Input-output tables are a powerful analytical tool for describing the structure of New Zealand’s economy. They show the relationships between industries, the goods and services they produce, and who uses them.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"accrualPeriodicity": "irregular",
"temporal": "2007/",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/~/media/Statistics/Browse%20for%20stats/NationalAccounts/HOTPYeMar11/NationalAccountsYeMar11HOTP.pdf",
"format": "PDF"
}
]
},
{
"title": "Longitudinal Immigration Study of New Zealand",
"description": "International visitor arrivals to New Zealand provides monthly and annual data showing the number and characteristics of visitor arrivals.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"demography",
"education",
"employment",
"health",
"housing",
"living arrangement",
"migration",
"population",
"settlement",
"social"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"theme": "Population and society",
"temporal": "2004/2010",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Local-authority-statistics/Local-authority-statistics-March-2018-quarter/Download-data/local-authority-statistics-march-2018-quarter-tables.xlsx",
"format": "XLSX"
},
{
"format": "XLS"
},
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/551e4107-6040-44fe-a5df-fde83989e6c1",
"title": "Metadata"
}
]
},
{
"title": "Linked Employee-Employer Data",
"description": "These releases provide statistics on filled jobs, job flows, worker flows, mean and median earnings for continuing jobs and new hires, and total earnings.",
"identifier": "https://www.stats.govt.nz/publications?filters=Linked%20employer-employee%20data%20%28LEED%29%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
" age",
"firm size",
"industry",
"leed",
"region",
"sector",
"sex",
"territorial authority"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Linked%20employer-employee%20data%20%28LEED%29%2CInformation%20releases",
"accrualPeriodicity": "R/P3M",
"theme": "Employment"
},
{
"title": "Labour Market Statistics (Income)",
"identifier": "https://www.stats.govt.nz/publications?filters=Labour%20market%20statistics%20%28income%29%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Labour%20market%20statistics%20%28income%29%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Labour-market-statistics/Labour-market-statistics-March-2018-quarter/Download-data/household-labour-force-survey-march-2018-quarter-tables.xlsx",
"format": "XLSX",
"title": "Metadata"
}
]
},
{
"title": "International Visitor Arrivals to New Zealand",
"description": "International visitor arrivals to New Zealand provides monthly and annual data showing the number and characteristics of visitor arrivals.",
"identifier": "https://www.stats.govt.nz/publications?filters=International%20visitor%20arrivals%20to%20New%20Zealand%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=International%20visitor%20arrivals%20to%20New%20Zealand%2CInformation%20releases",
"accrualPeriodicity": "R/P1M",
"theme": "Population and society",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/International-travel-and-migration/International-travel-and-migration-April-2018/Download-data/international-travel-and-migration-april-2018-tables.xlsx",
"format": "XLSX",
"title": "Metadata"
}
]
},
{
"title": "International Trade in Services and Royalties Survey",
"description": "This survey is used to calculate New Zealand's imports and exports of services from other countries.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre"
},
"accrualPeriodicity": "R/P3M",
"distribution": [
{
"downloadURL": "http://www.stats.govt.nz/~/media/Statistics/Browse%20for%20stats/InjuryStatistics/HOTP16/InjuryStatistics16HOTP.pdf",
"format": "PDF"
}
]
},
{
"title": "Human Resources Capability (HRC) Survey",
"description": "The Human Resource Capability data collection is run annually and collects anonymous information about Public Service department employees, including staff numbers, pay, senior leaders, diversity and workplace wellbeing. The results provides trends and insights across the Public Service workforce. The results can be drawn on to monitor, plan and address present and future workforce issues at department and system levels.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "State Services Commission"
},
"contactPoint": {
"fn": "State Services Commission"
},
"accrualPeriodicity": "R/P1Y",
"theme": "State sector performance",
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Household-net-worth-statistics/Household-net-worth-statistics-Year-ended-June-2018/Download-data/household-net-worth-statistics-year-ended-june-2018-csv.zip",
"format": "ZIP"
}
]
},
{
"title": "Household Net Worth Statistics",
"description": "Household net worth statistics give a picture of the net worth (wealth) of New Zealanders, by looking at their household assets - financial and non-financial - and their liabilities.",
"identifier": "https://www.stats.govt.nz/publications?filters=Household%20net%20worth%20statistics%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"economy",
"ethnicity",
"gender and sex",
"households",
"income",
"maori",
"older people",
"society"
],
"modified": "2018-12-14",
"publisher": {
"name": "Stats NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Household%20net%20worth%20statistics%2CInformation%20releases",
"accrualPeriodicity": "irregular",
"theme": "Population and society",
"temporal": "2015/2018",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/f98d411f-4903-477a-b7ce-ffc70e85b378",
"title": "Metadata"
}
]
},
{
"title": "Household Economic Survey (Savings)",
"description": "The Household Economic Survey (HES) is an annual survey that collects information on income, housing costs, material wellbeing and demographic information on households and individuals in New Zealand. There are three versions of the HES, including HES (Income), HES (Expenditure) and HES (Savings). The HES (Income) is the primary content and is collected every year, but combined with HES (Expenditure) and HES (Savings) alternately in the two years in between the standalone HES every year.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
" expenditure",
"fiscal",
"households",
"income",
"open government",
"tax and economics"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"accrualPeriodicity": "irregular"
},
{
"title": "Household Economic Survey (Income)",
"description": "The Household Economic Survey (HES) is an annual survey that collects information on income, housing costs, material wellbeing and demographic information on households and individuals in New Zealand. There are three versions of the HES, including HES (Income), HES (Expenditure) and HES (Savings). The HES (Income) is the primary content and is collected every year, but combined with HES (Expenditure) and HES (Savings) alternately in the two years in between the standalone HES every year.",
"identifier": "https://www.stats.govt.nz/insights?filters=Household%20economic%20survey%20%28income%29%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
" expenditure",
"fiscal",
"households",
"income",
"open government",
"tax and economics"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/insights?filters=Household%20economic%20survey%20%28income%29%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Population and society",
"temporal": "1973/2018",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/item/nz.govt.stats/27d850c1-939c-4e93-b61c-a1b5196b7f27/248",
"title": "Metadata"
}
]
},
{
"title": "Household Economic Survey",
"description": "The Household Economic Survey (HES) is an annual survey that collects information on income, housing costs, material wellbeing and demographic information on households and individuals in New Zealand. There are three versions of the HES, including HES (Income), HES (Expenditure) and HES (Savings). The HES (Income) is the primary content and is collected every year, but combined with HES (Expenditure) and HES (Savings) alternately in the two years in between the standalone HES every year.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
" expenditure",
"fiscal",
"households",
"income",
"open government",
"tax and economics"
],
"modified": "2015-11-26",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"accrualPeriodicity": "R/P1Y",
"theme": "Population and society"
},
{
"title": "Household Econmic Survey (Expenditure)",
"description": "The Household Economic Survey (HES) is an annual survey that collects information on income, housing costs, material wellbeing and demographic information on households and individuals in New Zealand. There are three versions of the HES, including HES (Income), HES (Expenditure) and HES (Savings). The HES (Income) is the primary content and is collected every year, but combined with HES (Expenditure) and HES (Savings) alternately in the two years in between the standalone HES every year.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
" expenditure",
"fiscal",
"households",
"income",
"open government",
"tax and economics"
],
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"accrualPeriodicity": "irregular",
"theme": "Population and society"
},
{
"title": "Historical de facto population estimates",
"description": "De facto population estimates include all people present in New Zealand and counted by the census (census night population count). De facto estimates include visitors from overseas who are counted on census night, but exclude New Zealand residents who are temporarily overseas. The estimated de facto population at a given date after census includes births, deaths and net migration (arrivals less departures) of people during the period between census night and the given date. De facto population estimates are no longer produced.",
"identifier": "http://archive.stats.govt.nz/browse_for_stats/population/estimates_and_projections/historical-population-tables.aspx",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"de facto",
"estimates",
"historical",
"historical estimates",
"population and migration"
],
"issued": "1926-03-31",
"modified": "1995-12-31",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"landingPage": "http://archive.stats.govt.nz/browse_for_stats/population/estimates_and_projections/historical-population-tables.aspx",
"accrualPeriodicity": "R/P3M",
"theme": "Population and society",
"temporal": "1926/1995",
"distribution": [
{
"downloadURL": "http://datainfoplus.stats.govt.nz/Item/nz.govt.stats/bec27cc6-c9e2-4b7a-b1f4-cb5e096f91ad",
"title": "Metadata"
},
{
"downloadURL": "http://archive.stats.govt.nz/~/media/Statistics/browse-categories/population/estimates-projections/national-pop-estimates/historical-pop-estimates.xlsx",
"format": "XLSX",
"title": "Dataset"
}
]
},
{
"title": "Government Current Transactions",
"description": "Government Current Transactions is a component of the Services item of New Zealand's Balance of Payments statement.",
"license": "https://creativecommons.org/licenses/by/4.0/",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"distribution": [
{
"downloadURL": "https://www.stats.govt.nz/assets/Uploads/Goods-and-services-trade-by-country/Goods-and-services-trade-by-country-Year-ended-March-2018/Download-data/goods-and-services-trade-by-country-year-ended-march-2018-tables.xlsx",
"format": "XLSX"
}
]
},
{
"title": "Geographic boundary data annual release",
"description": "The Stats NZ geographic data service provides geographic boundaries for 2018 as well as other recent years, and a selection of 2013 Census spatial data.",
"identifier": "https://www.stats.govt.nz/publications?filters=Geographic%20boundary%20data%20annual%20release%2CInformation%20releases",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keyword": [
"census",
"maori",
"population"
],
"modified": "2018-12-6",
"publisher": {
"name": "Statistics NZ"
},
"contactPoint": {
"fn": "InfoCentre",
"hasEmail": "info@stats.govt.nz"
},
"landingPage": "https://www.stats.govt.nz/publications?filters=Geographic%20boundary%20data%20annual%20release%2CInformation%20releases",
"accrualPeriodicity": "R/P1Y",
"theme": "Population and society",
"distribution": [
{
"downloadURL": "https://datafinder.stats.govt.nz/layers/category/annual-boundaries/2019/?q=2019"
},