documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FS_FRDOC_0001" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, 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-4144 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Land Management Plan Revision: Tongass National Forest; AK | Notice | Notice of Intent | 2026-02-18T05:00:00Z | 2026 | 2 | 2026-02-26T10:00:19Z | 2026-03197 | 0 | 0 | 09000064b91b3d9c | ||
| FS_FRDOC_0001-4143 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Program Review: Subsistence Management for Public Lands in Alaska | Proposed Rule | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T05:00:00Z | 2026-03-31T03:59:59Z | 2026-02-20T20:30:14Z | 2026-02975 | 1 | 0 | 09000064b91aa6ae | |
| FS_FRDOC_0001-4142 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: 2027-28 and 2028-29 Subsistence Taking of Fish and Shellfish Regulations | Proposed Rule | 2026-02-12T05:00:00Z | 2026 | 2 | 2026-02-12T05:00:00Z | 2026-02-12T17:17:34Z | 2026-02853 | 0 | 0 | 09000064b91a71e7 | ||
| FS_FRDOC_0001-4140 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Excess Personal Property and Firefighter Property Program Administration | Notice | 2026-02-06T05:00:00Z | 2026 | 2 | 2026-02-06T05:00:00Z | 2026-04-08T03:59:59Z | 2026-03-03T10:00:25Z | 2026-02438 | 1 | 0 | 09000064b9195a5d | |
| FS_FRDOC_0001-4138 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Newspapers Used for Publication of Legal Notices by the Intermountain Region: Utah, Nevada, Parts of Idaho and Wyoming | Notice | 2026-02-03T05:00:00Z | 2026 | 2 | 2026-02-03T05:00:00Z | 2026-02-03T17:30:31Z | 2026-02111 | 0 | 0 | 09000064b918dc12 | ||
| FS_FRDOC_0001-4139 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Newspapers Used for Publication of Legal Notices: Southwestern Region; Arizona, New Mexico, and Parts of Oklahoma and Texas | Notice | 2026-02-03T05:00:00Z | 2026 | 2 | 2026-02-03T05:00:00Z | 2026-02-03T17:31:13Z | 2026-02183 | 0 | 0 | 09000064b918dd78 | ||
| FS_FRDOC_0001-4137 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Hearings, Meetings, Proceedings, etc.: Alaska Subsistence Regional Advisory Council, 2026 | Notice | 2026-01-29T05:00:00Z | 2026 | 1 | 2026-01-29T05:00:00Z | 2026-01-29T17:30:14Z | 2026-01810 | 0 | 0 | 09000064b9186ded | ||
| FS_FRDOC_0001-4135 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Requests for Nominations: National Urban and Community Forestry Advisory Council | Notice | 2026-01-14T05:00:00Z | 2026 | 1 | 2026-01-14T05:00:00Z | 2026-02-18T04:59:59Z | 2026-02-20T20:30:00Z | 2026-00568 | 0 | 0 | 09000064b913e124 | |
| FS_FRDOC_0001-4134 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Hearings, Meetings, Proceedings, etc.: Land Between the Lakes Advisory Board | Notice | 2026-01-12T05:00:00Z | 2026 | 1 | 2026-01-12T05:00:00Z | 2026-01-13T00:33:40Z | 2026-00319 | 0 | 0 | 09000064b9136669 |
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;