documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FS", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, posted_date (date), comment_start_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-3409 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: Subsistence Taking of Wildlife Regulations, 2020-21 and 2021-22 | Rule | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-23T12:50:56Z | 2020-22733 | 0 | 0 | 090000648497051e | ||
| FS-2019-0010-43438 | FS | National Environmental Policy Act Compliance - Proposed Rule FS-2019-0010 | National Environmental Policy Act Compliance | Rule | Final Rule | 2020-11-19T05:00:00Z | 2020 | 11 | 2020-11-19T05:00:00Z | 2020-11-19T14:36:03Z | 2020-25465 | 0 | 0 | 0900006484968552 | |
| FS_FRDOC_0001-3401 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Special Areas; Roadless Area Conservation: National Forest System Lands in Alaska | Rule | 2020-10-29T04:00:00Z | 2020 | 10 | 2020-10-29T04:00:00Z | 2020-10-29T11:57:17Z | 2020-23984 | 0 | 0 | 090000648493e359 | ||
| FS_FRDOC_0001-3391 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Conveyance of Small Tracts | Rule | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T04:00:00Z | 2020-09-29T12:10:19Z | 2020-21258 | 0 | 0 | 0900006484897fa7 | ||
| FS_FRDOC_0001-3359 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Land Uses; Special Uses: Procedures for Operating Plans and Agreements for Powerline Facility Maintenance and Vegetation Management Within and Abutting the Linear Boundary of a Special Use Authorization for a Powerline Facility; Correction | Rule | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-08-11T04:00:00Z | 2020-08-11T11:42:03Z | 2020-17462 | 0 | 0 | 09000064847f063d | ||
| FS_FRDOC_0001-3348 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Land Uses; Special Uses: Procedures for Operating Plans and Agreements for Powerline Facility Maintenance and Vegetation Management Within and Abutting the Linear Boundary of a Special Use Authorization for a Powerline Facility | Rule | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T12:13:12Z | 2020-13999 | 0 | 0 | 090000648473b115 | ||
| FS_FRDOC_0001-3307 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Land Uses; Special Uses; Streamlining Processing of Communications Use Applications | Rule | 2020-04-08T04:00:00Z | 2020 | 4 | 2020-04-08T04:00:00Z | 2020-04-08T11:53:41Z | 2020-07280 | 0 | 0 | 0900006484492243 | ||
| FS_FRDOC_0001-3291 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Conveyance of Small Tracts | Rule | 2020-02-13T05:00:00Z | 2020 | 2 | 2020-02-13T05:00:00Z | 2020-02-13T12:47:34Z | 2020-02299 | 0 | 0 | 0900006484362dd2 | ||
| FS_FRDOC_0001-3278 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Public Notice and Comment for Forest Service Directives | Rule | Correction | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2020-01-16T15:33:49Z | 2020-00666 | 0 | 0 | 09000064842aecc5 |
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;