documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "BLM-2017-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-2017-0002-17373 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Final Rule Waste Prevention Delay Supplemental Comment and Responses 12.01.17 | Supporting & Related Material | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T19:50:26Z | 0 | 0 | 0900006482d0024e | ||||
| BLM-2017-0002-17372 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Final Rule Waste Prevention Delay FWS BA Concurrence_08NOV17 | Supporting & Related Material | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T19:02:34Z | 0 | 0 | 0900006482d0024d | ||||
| BLM-2017-0002-17370 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Final Rule Waste Prevention Delay EA 12.01.17 | Supporting & Related Material | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T19:50:25Z | 0 | 0 | 0900006482d0024b | ||||
| BLM-2017-0002-17371 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Final Rule Waste Prevention Delay FONSI 12.4.17 | Supporting & Related Material | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T19:02:29Z | 0 | 0 | 0900006482d0024c | ||||
| BLM-2017-0002-17369 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Final Rule Waste Prevention Delay RIA 12.01.17 | Supporting & Related Material | 2017-12-12T05:00:00Z | 2017 | 12 | 2017-12-12T19:50:24Z | 0 | 0 | 0900006482d0024a | ||||
| BLM-2017-0002-17368 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Waste Prevention, Production Subject to Royalties, and Resource Conservation: Delay and Suspension of Certain Requirements | Rule | 2017-12-08T05:00:00Z | 2017 | 12 | 2017-12-08T05:00:00Z | 2017-12-11T21:00:49Z | 2017-26389 | 0 | 0 | 0900006482cf2920 | ||
| BLM-2017-0002-0076 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Exhibit A Environmental Assessment for 2016 final rule (BLM-2016-0001-9128) | Supporting & Related Material | 2017-10-17T04:00:00Z | 2017 | 10 | 2017-10-17T16:09:31Z | 0 | 0 | 0900006482bd51d3 | ||||
| BLM-2017-0002-0002 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Regulatory Impact Analysis for Proposed Waste Prevention Delay Rule | Supporting & Related Material | 2017-10-05T04:00:00Z | 2017 | 10 | 2017-10-05T12:40:05Z | 0 | 0 | 0900006482b98c96 | ||||
| BLM-2017-0002-0001 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements | Proposed Rule | 2017-10-05T04:00:00Z | 2017 | 10 | 2017-10-05T04:00:00Z | 2017-11-07T04:59:59Z | 2017-11-23T02:02:16Z | 2017-21294 | 0 | 0 | 0900006482b9efa6 | |
| BLM-2017-0002-0003 | BLM | Proposed rule; Waste Prevention, Production Subject to Royalties, and Resource Conservation; Delay and Suspension of Certain Requirements BLM-2017-0002 | Environmental Assessment for Proposed Waste Prevention Delay Rule | Supporting & Related Material | 2017-10-05T04:00:00Z | 2017 | 10 | 2017-10-05T12:40:11Z | 0 | 0 | 0900006482b98c9d |
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;