documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FS", document_type = "Proposed Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, withdrawn, 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-2023-0014-0001 | FS | Land Uses; Special Uses; Carbon Capture and Storage Exemptions FS-2023-0014 | Land Uses: Special Uses; Carbon Capture and Storage Exemption | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-11-03T04:00:00Z | 2023 | 11 | 2023-11-03T04:00:00Z | 2024-01-03T04:59:59Z | 2024-01-04T02:00:32Z | 2023-24341 | 0 | 0 | 09000064861dfadd |
| FS-2023-0012-0001 | FS | Law Enforcement; Criminal Prohibitions FS-2023-0012 | Law Enforcement; Criminal Prohibitions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-10-03T04:00:00Z | 2023 | 10 | 2023-10-03T04:00:00Z | 2023-12-05T04:59:59Z | 2023-12-05T02:00:13Z | 2023-21563 | 0 | 0 | 0900006486024a44 |
| FS-2023-0010-0001 | FS | Special Uses; Land Use Fees; Temporary Land Use Fee Reductions for Recreation Residence Permits FS-2023-0010 | Special Uses: Land Use Fees; Temporary Land Use Fee Reductions for Recreation Residence Permits | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-10-02T04:00:00Z | 2023 | 10 | 2023-10-02T04:00:00Z | 2023-12-02T04:59:59Z | 2023-12-02T02:01:28Z | 2023-21564 | 0 | 0 | 0900006486019412 |
| FS-2023-0009-0001 | FS | Minerals Cost Recovery FS-2023-0009 | Minerals Cost Recovery | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-06-13T04:00:00Z | 2023 | 6 | 2023-06-13T04:00:00Z | 2023-08-15T03:59:59Z | 2023-08-15T01:03:32Z | 2023-11622 | 0 | 0 | 0900006485b0fd17 |
| FS-2023-0006-29271 | FS | Forest and Grassland Climate Resilience FS-2023-0006 | Forest Service Functions - Extension of Comment Period | Proposed Rule | Extension of Comment Period | 2023-06-08T04:00:00Z | 2023 | 6 | 2023-06-08T13:34:04Z | 2023-12267 | 0 | 0 | 0900006485ade983 | ||
| FS-2023-0001-0073 | FS | Land Uses; Special Uses; Cost Recovery, Strict Liability Limit, and Insurance FS-2023-0001 | Land Uses: Special Uses; Cost Recovery, Strict Liability Limit, and Insurance | Proposed Rule | Extension of Comment Period | 2023-05-19T04:00:00Z | 2023 | 5 | 2023-05-19T04:00:00Z | 2023-06-21T03:59:59Z | 2023-06-21T01:01:17Z | 2023-10436 | 0 | 0 | 0900006485a22c1b |
| FS-2023-0006-0002 | FS | Forest and Grassland Climate Resilience FS-2023-0006 | Forest Service Functions | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2023-04-21T04:00:00Z | 2023 | 4 | 2023-04-21T04:00:00Z | 2023-07-21T03:59:59Z | 2023-09-08T01:04:10Z | 2023-08429 | 0 | 0 | 09000064859705fc |
| FS-2023-0008-0001 | FS | FS document repository FS-2023-0008 | Subsistence Management Regulations for Public Lands in Alaska-Subpart B, Federal Subsistence Board | Proposed Rule | 2023-04-21T00:00:00Z | 2023 | 4 | 2023-04-24T17:33:41Z | 0 | 1 | 0900006480becd08 | ||||
| FS-2023-0001-0001 | FS | Land Uses; Special Uses; Cost Recovery, Strict Liability Limit, and Insurance FS-2023-0001 | Land Uses; Special Uses; Cost Recovery, Strict Liability Limit, and Insurance | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-03-09T05:00:00Z | 2023 | 3 | 2023-03-09T05:00:00Z | 2023-05-09T03:59:59Z | 2023-05-09T01:01:06Z | 2023-04180 | 0 | 0 | 0900006485781d61 |
| FS-2023-0007-0001 | FS | Subsistence Management Regulations for Public Lands: Alaska; Taking of Wildlife FS-2023-0007 | Subsistence Management Regulations for Public Lands: Alaska; Taking of Wildlife | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-02-27T05:00:00Z | 2023 | 2 | 2023-02-27T05:00:00Z | 2023-04-05T03:59:59Z | 2023-04-18T14:57:27Z | 2023-03825 | 0 | 0 | 090000648571b82d |
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;