documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FS-2018-0053" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FS-2018-0053-0001 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Oil and Gas Resources | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T04:00:00Z | 2018-10-16T03:59:59Z | 2018-10-20T01:02:45Z | 2018-19962 | 0 | 0 | 09000064836e5f36 |
| FS-2018-0053-0007 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Tips For Submitting Effective Comments | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:24:26Z | 0 | 0 | 09000064836deaa0 | |||
| FS-2018-0053-0002 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Forest Service Current Oil and Gas Resources Regulations – 36 CFR 228 Subpart E | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:23:40Z | 0 | 0 | 09000064836dea9b | |||
| FS-2018-0053-0005 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Forest Service & BLM - Onshore Order Number 1 – 2017 amendment for e-filing | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:24:08Z | 0 | 0 | 09000064836dea9e | |||
| FS-2018-0053-0004 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Forest Service & BLM - Onshore Order Number 1 – 2007 | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:24:00Z | 0 | 0 | 09000064836dea9d | |||
| FS-2018-0053-0006 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Forest Service – National Forests and Grasslands with oil or gas operations or Applications for Permit to Drill | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:24:16Z | 0 | 0 | 09000064836dea9f | |||
| FS-2018-0053-0003 | FS | ANPR - 36 CFR 228(e) - Oil & Gas Resources FS-2018-0053 | Bureau of Land Management (BLM) Geophysical Regulations – 43 CFR 3150 | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:23:51Z | 0 | 0 | 09000064836dea9c |
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;