documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "BLM-2017-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- BLM 6
| 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-0001-0465 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | Clean_EA_Final.HF.Rescission.Rule PDF | Supporting & Related Material | 2018-01-03T05:00:00Z | 2018 | 1 | 2018-01-03T19:03:41Z | 0 | 0 | 0900006482d839f4 | ||||
| BLM-2017-0001-0464 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | Clean_RIA_Final.HF.Rescission.Rule PDF | Supporting & Related Material | 2018-01-03T05:00:00Z | 2018 | 1 | 2018-01-03T19:03:36Z | 0 | 0 | 0900006482d839f3 | ||||
| BLM-2017-0001-0463 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | Oil and Gas: Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule | Rule | 2017-12-29T05:00:00Z | 2017 | 12 | 2017-12-29T05:00:00Z | 2017-12-29T14:30:36Z | 2017-28211 | 0 | 0 | 0900006482d83305 | ||
| BLM-2017-0001-0002 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | BLM_Draft_RIA_Rescind HF Rule 7.18.17 | Supporting & Related Material | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T12:32:54Z | 0 | 0 | 0900006482962b1a | ||||
| BLM-2017-0001-0003 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | BLM_Draft_EA_Rescind HF Rule 7.18.17 | Supporting & Related Material | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T12:32:54Z | 0 | 0 | 09000064829628f5 | ||||
| BLM-2017-0001-0001 | BLM | Oil and Gas; Hydraulic Fracturing on Federal and Indian Lands; Rescission of a 2015 Rule BLM-2017-0001 | Oil and Gas: Hydraulic Fracturing on Federal and Indian Lands; Recission | Proposed Rule | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T04:00:00Z | 2017-09-26T03:59:59Z | 2017-09-29T01:08:26Z | 2017-15696 | 0 | 0 | 090000648296298b |
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;