-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathonrr-data.json
More file actions
1025 lines (1024 loc) · 56.8 KB
/
Copy pathonrr-data.json
File metadata and controls
1025 lines (1024 loc) · 56.8 KB
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
{
"@type": "dcat:Catalog",
"@id": "https://www.revenuedata.doi.gov/onrr-data.json",
"@context": "https://project-open-data.cio.gov/v1.1/schema/catalog.jsonld",
"conformsTo": "https://project-open-data.cio.gov/v1.1/schema",
"describedBy": "https://project-open-data.cio.gov/v1.1/schema/catalog.json",
"dataset": [
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/4b89f4ac7d2bf03fa13a431b904cc689",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design, and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/disbursements/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes natural resource disbursements for U.S. federal lands, federal offshore areas, and Native American lands. It does not include privately owned lands or U.S. state lands. The dataset is tracked and managed by the Department of the Interior's Office of Natural Resources Revenue. It contains disbursement information to funds for fiscal years 2003-present. Disbursements of revenue from extractive activities on U.S. federal lands occur monthly. This dataset is a sum of those disbursements by fiscal year.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Fiscal year disbursements of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/fiscal_year_disbursements.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Fiscal year disbursements of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for disbursements data",
"accessURL": "https://revenuedata.doi.gov/downloads/disbursements/",
"mediaType": "text/html",
"title": "ONRR Disbursements Landing Page"
}
],
"identifier": "ngp:e6327650-f740-4934-a7c2-bdce7ed9e975",
"issued": "2015-12-15",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/disbursements/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2024-11-08",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Fiscal year disbursements of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/765163f2b455884e4bdf01386860d0dd",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/disbursements/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes natural resource revenue disbursements for U.S. federal lands, federal offshore areas, and Native American lands. It does not include privately owned lands or U.S. state lands. The disbursements go to the U.S. General Treasury Fund, states and local governments, Native American tribes and individuals, Land and Water Conservation Fund, Historic Preservation Fund, Reclamation Fund, and several smaller funds within federal agencies. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains disbursement information to funds for fiscal years 1982-2002. Disbursements of revenue from extractive activities on U.S. federal lands occur monthly. This dataset is a sum of those disbursements by fiscal year.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Historical fiscal year disbursements of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/historical_disbursementscsv_FY1982-2002.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Historical fiscal year disbursements of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for historical disbursements data",
"accessURL": "https://revenuedata.doi.gov/downloads/#historical-disbursements",
"mediaType": "text/html",
"title": "ONRR Historical Disbursements Landing Page"
}
],
"identifier": "ngp:cb59ab48-ca3a-4ab1-8765-e1d489a64942",
"issued": "2015-12-15",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/#historical-disbursements",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2023-11-09",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Historical fiscal year disbursements of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/d93181cf90182f5da200c383b4c811eb",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/production/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes commodity production volumes of natural resources by calendar year. Natural resources are extracted from federal lands, federal waters, and Native American lands. Federal production volumes are available by state, county, and offshore area. Location data is withheld for Native American data. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains production data from calendar years 2003-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Calendar year production of U.S. natural resources revenue as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/calendar_year_production.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Calendar year production of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for calendar year production data",
"accessURL": "https://revenuedata.doi.gov/downloads/production/",
"mediaType": "text/html",
"title": "ONRR Calendar Year Production Landing Page"
}
],
"identifier": "ngp:b5eb007f-f47a-4e45-ba66-39adbf064ae9",
"issued": "2015-12-18",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/production/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-01-29",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Calendar year production of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/6537f74f33f2ca2dbcfd6a62b53dbe90",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/production/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes commodity production volumes of natural resources by fiscal year. Natural resources are extracted from federal lands, federal waters, and Native American lands. Federal production volumes are available by state, county, and offshore area. Location data is withheld for Native American data. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains production data from fiscal years 2003-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Fiscal year production of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/fiscal_year_production.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Fiscal year production of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for fiscal year production data",
"accessURL": "https://revenuedata.doi.gov/downloads/production/",
"mediaType": "text/html",
"title": "ONRR Fiscal Year Production Landing Page"
}
],
"identifier": "ngp:c1651149-d8d3-4f69-af2b-b3845886b284",
"issued": "2016-02-06",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/production/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-01-29",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Fiscal year production of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/fbefd995ca01da8a4fe60851cfb316c8",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/revenue/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes revenue from natural resources by calendar year. Natural resources are extracted from federal lands, federal waters, and Native American lands. The data is further broken down by location, lease type, revenue type (e.g., bonuses, rents, and royalties), and commodity/product information. It does not include privately-owned lands or U.S. state lands. Federal revenue data is available by location. Native American data is only available at the national level to protect private and personally identifiable information. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains revenue data from calendar years 2003-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Calendar year revenue of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/calendar_year_revenue.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Calendar year revenue of U.S. natural resources"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for calendar year revenue data",
"accessURL": "https://revenuedata.doi.gov/downloads/revenue/",
"mediaType": "text/html",
"title": "ONRR Calendar Year Revenue Landing Page"
}
],
"identifier":"ngp:93a24cfc-0335-408f-948d-38821d8a7425",
"issued": "2015-12-18",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/revenue/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-01-29",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Calendar year revenue of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/55f785eb85e5019c6f04489df1d692af",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/revenue/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes revenue from natural resources by calendar year. Natural resources are extracted from federal lands, federal waters, and Native American lands. The data is further broken down by location, revenue type, and commodity information. It does not include privately-owned lands or U.S. state lands. Federal revenue data is available by location. Native American data is only available at the national level to protect private and personally identifiable information. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. This includes data from calendar years 1982-2002.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Historical calendar year revenue of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/historical_revenuecsv_CY1982-2002.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Historical calendar year revenue of U.S. natural resources"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for historical calendar year revenue data",
"accessURL": "https://revenuedata.doi.gov/downloads/#historical-revenue",
"mediaType": "text/html",
"title": "ONRR Historical Calendar Year Revenue Landing Page"
}
],
"identifier": "ngp:#dcb9c4e5-15f9-4f30-aad8-59ba7fd8b610",
"issued": "2021-12-17",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/#historical-revenue",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-01-29",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Historical calendar year revenue of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/4d9cadd691ab60e7d5126e6d8f28ebdb",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/revenue/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes revenue from natural resources by fiscal year. Natural resources are extracted from federal lands, federal waters, and Native American lands. The data is further broken down by location, lease type, revenue type (e.g., bonuses, rents, and royalties), and commodity/product information. It does not include privately-owned lands or U.S. state lands. Federal revenue data is available by location. Native American data is only available at the national level to protect private and personally identifiable information. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains revenue data from fiscal years 2004-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Fiscal year revenue of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/fiscal_year_revenue.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Fiscal year revenue of U.S. natural resources"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for fiscal year revenue data",
"accessURL": "https://revenuedata.doi.gov/downloads/revenue/",
"mediaType": "text/html",
"title": "ONRR Fiscal Year Revenue Landing Page"
}
],
"identifier": "ngp:1602982e-b345-4198-9ca1-bdb4751ac48b",
"issued": "2015-12-18",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"native lands",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/revenue/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2024-11-08",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Fiscal year revenue of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/ae731e25f1c56192d94b009613690435",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/federal-revenue-by-company/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset provides natural resource federal revenue by company on a calendar year basis. Natural resources are extracted from federal lands, federal waters, and Native American lands. It includes revenue types by commodity for companies extracting natural resources on federal lands and waters. It does not include company revenue from Native American lands or privately owned lands. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains federal revenue by company data from 2013-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Calendar year federal revenue by company of U.S. natural resources data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/federal_revenue_by_company.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Calendar year federal revenue by company of U.S. natural resources"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for calendar year federal revenue by company data",
"accessURL": "https://revenuedata.doi.gov/downloads/federal-revenue-by-company/",
"mediaType": "text/html",
"title": "ONRR Calendar Year Federal Revenue by Company Landing Page"
}
],
"identifier": "ngp:0aa68e6b-3e90-4e5a-b289-aec60ed5cd05",
"issued": "2015-12-18",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/federal-revenue-by-company/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-07-23",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Calendar year federal revenue by company of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/5f95af61e8f8419ef0e0e37b402c94e1",
"accessLevel": "public",
"accrualPeriodicity": "R/P1Y",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/federal-sales/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset provides federal sales data for oil, gas, and natural gas liquids that report volumes for royalty and non-royalty bearing transactions by calendar year. This federal sales data represents sales transactions that took place within a given calendar year. This dataset only includes data for: oil, gas, and NGLs on U.S. federal onshore lands; and oil, gas, and NGLs on U.S. federal offshore areas. It does not include Native American land, privately-owned lands, or U.S. state lands. The dataset includes all ONRR Form-2014 federal reported royalty transaction codes, royalty relief codes, and transaction code (TC) 13 Quality Bank and Gravity Bank Adjustments. After reporters submit Form ONRR-2014, ONRR aggregates the data by totaling the data values by the sales year. ONRR then publishes this dataset. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains federal sales data for calendar years 2013-2023-2024.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Calendar year federal sales of U.S. natural resources revenue data as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/federal_sales.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Calendar year federal sales of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for calendar year federal sales data",
"accessURL": "https://revenuedata.doi.gov/downloads/federal-sales/",
"mediaType": "text/html",
"title": "ONRR Calendar Year Federal Sales Landing Page"
}
],
"identifier": "ngp:51ffe871-a4bf-4841-9bba-4517b3c9d786",
"issued": "2024-02-08",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/federal-sales/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-03-11",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Calendar year federal sales of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/84dae68f0c02beaf536c0894343f384c",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/production-by-month/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes commodity production volumes of natural resources by month. Monthly data contains only oil, gas, and coal, since these are high-volume commodities that result in the most revenue. Natural resources are extracted from federal lands, federal waters, and Native American lands. Federal production volumes are available by state, county, and offshore area. Location data is withheld for Native American data. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains production data from January 2003-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Monthly production of U.S. natural resources revenue as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/monthly_production.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Monthly production of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for monthly production data",
"accessURL": "https://revenuedata.doi.gov/downloads/production-by-month/",
"mediaType": "text/html",
"title": "ONRR monthly production data landing page"
}
],
"identifier": "ngp:ef4d1e45-8d19-4163-abb9-760aa5d59bc5",
"issued": "2016-02-26",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/production-by-month/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-08-20",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Monthly production of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/9633076755efad1e125c45aeb618bd6a",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/revenue/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes revenue from natural resources by month. Natural resources are extracted from federal lands, federal waters, and Native American lands. The data is further broken down by location, lease type, revenue type (e.g., bonuses, rents, and royalties), and commodity/product information. It does not include privately-owned lands or U.S. state lands. Federal revenue data is available by location. Native American data is only available at the national level to protect private and personally identifiable information. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains revenue data from January 2003-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Monthly revenue of U.S. natural resources as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/monthly_revenue.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Monthly revenue of U.S. natural resources"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for monthly revenue data",
"accessURL": "https://revenuedata.doi.gov/downloads/revenue/",
"mediaType": "text/html",
"title": "ONRR monthly revenue data landing page"
}
],
"identifier": "ngp:f9a6ae27-119a-45be-b3c4-db62bfb7919d",
"issued": "2015-12-18",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/revenue/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-08-20",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Monthly revenue of U.S. natural resources",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/640f0c68ec821c1fb8351a6d9f89eb0a",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/disbursements-by-month/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset includes monthly natural resource revenue disbursements for U.S. federal lands, federal offshore areas, and Native American lands. It does not include privately owned lands or U.S. state lands. The disbursements go to the U.S. General Treasury Fund, states and local governments, Native American tribes and individuals, Land and Water Conservation Fund, Historic Preservation Fund, Reclamation Fund, and several smaller funds within federal agencies. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains monthly disbursement information to funds for October 2014-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Monthly disbursements of U.S. natural resources revenue as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/monthly_disbursements.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Monthly disbursements of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for monthly disbursements data",
"accessURL": "https://revenuedata.doi.gov/downloads/disbursements-by-month/",
"mediaType": "text/html",
"title": "ONRR monthly disbursements data landing page"
}
],
"identifier": "ngp:87e1d5bc-c684-4401-b965-2089f28ab73f",
"issued": "2015-12-15",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/disbursements-by-month/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-08-20",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Monthly disbursements of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/92ec90b94ebf299f135e767a2cb89239",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/production-by-disposition/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset contains monthly production disposition volumes from ONRR’s OGOR-B form. These volumes come from the production of oil and gas. Natural resources are extracted from federal lands, federal waters, and Native American lands. Federal production volumes are available by state, county, and offshore area. Location data is withheld for Native American data. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains monthly production disposition data from January 2015-present.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Monthly production disposition of U.S. natural resources revenue as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/OGOR-B/OGORBcsv.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Monthly production disposition of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for monthly production disposition data",
"accessURL": "https://revenuedata.doi.gov/downloads/production-by-disposition/",
"mediaType": "text/html",
"title": "ONRR monthly production disposition data landing page"
}
],
"identifier": "ngp:778c5b40-2162-43f6-a91b-eff7858e4c5a",
"issued": "2022-10-21",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"
],
"landingPage": "https://revenuedata.doi.gov/downloads/production-by-disposition/",
"language": [
"en-US"
],
"liability": "Neither the U.S. Government, the Department of the Interior, nor ONRR, nor any of their employees, contractors, or subcontractors, make any warranty, express or implied, nor assume any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, nor represent that its use would not infringe on privately owned rights.",
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
"modified": "2025-08-20",
"publisher": {
"@type": "org:Organization",
"name": "Office of Natural Resources Revenue",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "Department of the Interior",
"subOrganizationOf": {
"@type": "org:Organization",
"name": "U.S. Government"
}
}
},
"title": "Monthly production disposition of U.S. natural resources revenue",
"usageNotes": "No restrictions on use."
},
{
"@type": "dcat:Dataset",
"@id": "http://datainventory.doi.gov/id/dataset/588fd9cf0f13c373907b35037f90def6",
"accessLevel": "public",
"accrualPeriodicity": "R/P1M",
"bureauCode": [
"010:84"
],
"contactPoint": {
"@type": "vcard:Contact",
"fn": "Open Data, Design and Development Team",
"hasEmail": "mailto:NRRD@onrr.gov"
},
"creator": [
{
"@type": "org:Organization",
"name": "Information and Data Management"
}
],
"describedBy": "https://revenuedata.doi.gov/downloads/production-by-disposition/#data-dictionary",
"describedByType": "text/html",
"description": "This dataset contains historical monthly production disposition volumes from ONRR’s OGOR-B form. These volumes come from the production of oil and gas. Natural resources are extracted from federal lands, federal waters, and Native American lands. Federal production volumes are available by state, county, and offshore area. Location data is withheld for Native American data. The dataset is tracked and managed by the Department of the Interior’s Office of Natural Resources Revenue. It contains monthly production disposition data from January 2003 - December 2014.",
"distribution": [
{
"@type": "dcat:Distribution",
"description": "Historical monthly production disposition of U.S. natural resources revenue as a CSV file",
"downloadURL": "https://revenuedata.doi.gov/downloads/OGOR-B/Historical_OGORBcsv_CY2003-2014.csv",
"format": "CSV",
"mediaType": "text/csv",
"title": "Historical monthly production disposition of U.S. natural resources revenue"
},
{
"@type": "dcat:Distribution",
"description": "Landing page for historical monthly production disposition data",
"accessURL": "https://revenuedata.doi.gov/downloads/production-by-disposition/",
"mediaType": "text/html",
"title": "ONRR historical monthly production disposition data landing page"
}
],
"identifier": "ngp:3aad504b-3d1f-4169-bf21-1621c3e8a0a1",
"issued": "2022-10-21",
"keyword": [
"economy",
"environment",
"geoscientificInformation",
"location",
"federal lands",
"offshore waters",
"outer continental shelf"