documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FS", document_type = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FS_FRDOC_0001-3134 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska-Cook Inlet Area Regulations | Proposed Rule | 2018-10-01T04:00:00Z | 2018 | 10 | 2018-10-01T04:00:00Z | 2018-10-01T12:05:16Z | 2018-21218 | 0 | 0 | 090000648378587c | ||
| 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-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 |
| FS_FRDOC_0001-3050 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations: Public Lands in Alaska: 2019-20 and 2020-21 Subsistence Taking of Fish and Shellfish Regulations | Proposed Rule | 2018-03-23T04:00:00Z | 2018 | 3 | 2018-03-23T04:00:00Z | 2018-04-24T03:59:59Z | 2018-03-25T01:01:02Z | 2018-05848 | 0 | 0 | 0900006483043342 | |
| FS-2018-0004-0001 | FS | National Environmental Policy Act Compliance FS-2018-0004 | National Environmental Policy Act Compliance | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2018-01-03T05:00:00Z | 2018 | 1 | 2018-01-03T05:00:00Z | 2018-02-03T04:59:59Z | 2018-02-09T02:02:33Z | 2017-28298 | 0 | 0 | 0900006482d90d61 |
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;