documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FS-2018-0052" 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-0052-0002 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Forest Service current Locatable Minerals regulations - 36 CFR 228 Subpart A | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:21:01Z | 0 | 0 | 09000064836df6ee | |||
| FS-2018-0052-0009 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Tips_For_Submitting_Effective_Comments | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:22:20Z | 0 | 0 | 09000064836df6f5 | |||
| FS-2018-0052-0005 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | BLM current Surface Management regulations – 43 CFR 3809 | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:21:36Z | 0 | 0 | 09000064836df6f1 | |||
| FS-2018-0052-0004 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Bureau of Land Management (BLM) current Use and Occupancy Under the Mining Laws regulations – 43 CFR 3715 | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:21:20Z | 0 | 0 | 09000064836df6f0 | |||
| FS-2018-0052-0006 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Government Accountability Office (GAO) 2016 report Hardrock Mining | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:21:49Z | 0 | 0 | 09000064836df6f2 | |||
| FS-2018-0052-0007 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | GAO 1990 report - Federal Land Management Unauthorized Activities Occurring on Hardrock Mining Claims | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:22:01Z | 0 | 0 | 09000064836df6f3 | |||
| FS-2018-0052-0008 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | National Research Council (NRC) 1999 report - Hardrock Mining on Federal Lands | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:22:12Z | 0 | 0 | 09000064836df6f4 | |||
| FS-2018-0052-0003 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Forest Service current Disposal of Mineral Material regulations 36CFR 228 Subpart C | Supporting & Related Material | Decision | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T12:21:10Z | 0 | 0 | 09000064836df6ef | |||
| FS-2018-0052-0001 | FS | 36 CFR 228(a) - Locatable Minerals FS-2018-0052 | Locatable Minerals | 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-24T01:04:18Z | 2018-19961 | 0 | 0 | 09000064836e65a2 |
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;