documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "BLM", document_type = "Proposed Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BLM_FRDOC_0001-0083 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Onshore Oil and Gas Operations; Federal and Indian Oil and Gas Leases; Site Security; Measurement of Oil; and Measurement of Gas | Proposed Rule | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2015-12-15T04:59:59Z | 2015-12-15T22:01:04Z | 2015-29820 | 0 | 0 | 0900006481d694a2 | |
| BLM-2015-0005-0001 | BLM | Onshore Oil and Gas Operations; Federal and Indian Oil and Gas Leases; Measurement of Gas BLM-2015-0005 | Onshore Oil and Gas Operations: Federal and Indian Oil and Gas Leases; Measurement of Gas | Proposed Rule | 2015-10-13T04:00:00Z | 2015 | 10 | 2015-10-13T04:00:00Z | 2015-12-15T04:59:59Z | 2015-12-29T22:01:00Z | 2015-25556 | 0 | 0 | 0900006481cc4455 | |
| BLM-2015-0004-0001 | BLM | Onshore Oil and Gas Operations; Federal and Indian Oil and Gas Leases; Measurement of Oil BLM-2015-0004 | Onshore Oil and Gas Operations: Federal and Indian Oil and Gas Leases; Measurement of Oil | Proposed Rule | 2015-09-30T04:00:00Z | 2015 | 9 | 2015-09-30T04:00:00Z | 2015-12-15T04:59:59Z | 2016-01-06T22:01:40Z | 2015-24008 | 0 | 0 | 0900006481ca3795 | |
| BLM_FRDOC_0001-0078 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Onshore Oil and Gas Operations: Federal and Indian Oil and Gas Leases; Site Security | Proposed Rule | 2015-09-11T04:00:00Z | 2015 | 9 | 2015-09-11T04:00:00Z | 2015-10-10T03:59:59Z | 2015-10-10T21:37:50Z | 2015-22903 | 0 | 0 | 0900006481c682e9 | |
| BLM-2015-0003-0001 | BLM | Onshore Oil and Gas Operations; Federal and Indian Oil and Gas Leases; Site Security BLM-2015-0003 | Onshore Oil and Gas Operations: Federal and Indian Oil and Gas Leases; Site Security | Proposed Rule | 2015-07-13T04:00:00Z | 2015 | 7 | 2015-07-13T04:00:00Z | 2015-12-15T04:59:59Z | 2016-01-06T22:01:37Z | 2015-16737 | 0 | 0 | 0900006481b7d780 | |
| BLM-2015-0002-0016 | BLM | Oil and Gas Leasing: Royalty on Production, Rental Payments, Minimum Acceptable Bids, Bonding Requirements, and Civil Penalty Assessments BLM-2015-0002 | Oil and Gas Leasing: Royalty on Production, Rental Payments, Minimum Acceptable Bids, Bonding Requirements, and Civil Penalty Assessments | Proposed Rule | 2015-06-03T04:00:00Z | 2015 | 6 | 2015-06-03T04:00:00Z | 2015-06-20T03:59:59Z | 2015-07-01T01:31:08Z | 2015-13474 | 0 | 0 | 0900006481b17aa0 | |
| BLM-2015-0002-0001 | BLM | Oil and Gas Leasing: Royalty on Production, Rental Payments, Minimum Acceptable Bids, Bonding Requirements, and Civil Penalty Assessments BLM-2015-0002 | Oil and Gas Leasing: Royalty on Production, Rental Payments, Minimum Acceptable Bids, Bonding Requirements, and Civil Penalty Assessments | Proposed Rule | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-06-06T03:59:59Z | 2015-06-11T01:30:14Z | 2015-09033 | 0 | 0 | 0900006481ab1152 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;