documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FS", document_type = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2019-0023-0001 | FS | Special Areas, Roadless Area Conservation: National Forest System Lands in Alaska FS-2019-0023 | Special Areas, Roadless Area Conservation: National Forest System Lands in Alaska | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-10-17T04:00:00Z | 2019 | 10 | 2019-10-17T04:00:00Z | 2019-12-18T04:59:59Z | 2020-06-20T01:01:38Z | 2019-22638 | 0 | 0 | 09000064840b0531 |
| FS-2019-0019-0001 | FS | Land Uses; Special Uses; Procedures for Operating Plans and Agreements for Vegetation Management within and along Powerline Rights-of-Way FS-2019-0019 | Land Uses; Special Uses: Procedures for Operating Plans and Agreements for Vegetation Management within and along Powerline Rights-of-Way | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-25T04:00:00Z | 2019-11-26T04:59:59Z | 2020-07-28T15:21:35Z | 2019-20741 | 0 | 0 | 0900006483fc3239 |
| FS-2019-0027-0001 | FS | Land Uses; Special Uses: Streamlining Processing of Communications Use Applications FS-2019-0027 | Land Uses; Special Uses: Streamlining Processing of Communications Use Applications | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-25T04:00:00Z | 2019-11-26T04:59:59Z | 2019-12-06T02:01:54Z | 2019-20742 | 0 | 0 | 0900006483fc3579 |
| FS-2019-0017-0001 | FS | National Environmental Policy Act Proposed Rule - Comment Period Extension FS-2019-0017 | National Environmental Policy Act Compliance Comment Period Extension | Proposed Rule | Extension of Comment Period | 2019-08-09T04:00:00Z | 2019 | 8 | 2019-08-09T04:00:00Z | 2019-08-27T03:59:59Z | 2019-09-18T20:44:08Z | 2019-17071 | 0 | 0 | 0900006483e1d817 |
| FS-2019-0010-0001 | FS | National Environmental Policy Act Compliance - Proposed Rule FS-2019-0010 | National Environmental Policy Act Compliance | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-06-13T04:00:00Z | 2019 | 6 | 2019-06-13T04:00:00Z | 2019-08-27T03:59:59Z | 2019-08-28T01:05:53Z | 2019-12195 | 0 | 0 | 0900006483d0db2e |
| FS_FRDOC_0001-3152 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: 2020-21 and 2021-22 Subsistence Taking of Wildlife | Proposed Rule | 2019-01-31T05:00:00Z | 2019 | 1 | 2019-01-31T05:00:00Z | 2019-03-13T03:59:59Z | 2019-03-14T01:04:09Z | 2019-00424 | 0 | 0 | 0900006483a2ed4a |
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;