documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FS", document_type = "Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2023-0012-0043 | FS | Law Enforcement; Criminal Prohibitions FS-2023-0012 | Law Enforcement; Criminal Prohibitions | Rule | Final Rule | 2024-11-25T07:00:00Z | 2024 | 11 | 2024-11-25T05:00:00Z | 2024-11-25T15:47:11Z | 2024-27555 | 0 | 0 | 0900006486833b6d | |
| FS_FRDOC_0001-4048 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management for Public Lands in Alaska: Federal Subsistence Board Membership; Correction | Rule | 2024-11-13T05:00:00Z | 2024 | 11 | 2024-11-13T05:00:00Z | 2024-11-13T13:39:06Z | 2024-26119 | 0 | 0 | 090000648681317d | ||
| FS_FRDOC_0001-4034 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management for Public Lands in Alaska: Federal Subsistence Board Membership | Rule | 2024-10-17T04:00:00Z | 2024 | 10 | 2024-10-17T04:00:00Z | 2024-10-17T12:12:26Z | 2024-24088 | 0 | 0 | 09000064867d2b2f | ||
| FS-2023-0010-0032 | 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 | Rule | Final Rule | 2024-09-09T04:00:00Z | 2024 | 9 | 2024-09-09T04:00:00Z | 2024-09-10T15:44:18Z | 2024-20239 | 0 | 0 | 09000064866cf71b | |
| FS_FRDOC_0001-4008 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: 2024-25 and 2025-26 Subsistence Taking of Wildlife Regulations | Rule | 2024-08-29T04:00:00Z | 2024 | 8 | 2024-08-29T04:00:00Z | 2024-08-29T12:01:47Z | 2024-19025 | 0 | 0 | 09000064866b3535 | ||
| FS_FRDOC_0001-3957 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Planning | Rule | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-06T12:31:04Z | 2024-09624 | 0 | 0 | 0900006486542658 | ||
| FS_FRDOC_0001-3938 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: Applicability and Scope; Tongass National Forest Submerged Lands | Rule | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T04:00:00Z | 2024-04-03T12:27:41Z | 2024-07012 | 0 | 0 | 09000064864b7e1f | ||
| FS_FRDOC_0001-3930 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands: Alaska; 2023-24 and 2024-25 Subsistence Taking of Wildlife and Fish and Shellfish Regulations | Rule | 2024-02-29T05:00:00Z | 2024 | 2 | 2024-02-29T05:00:00Z | 2024-02-29T13:14:25Z | 2024-04056 | 0 | 0 | 09000064864406ad |
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;