documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA_FRDOC_0001" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA_FRDOC_0001-7511 | NOAA | None NOAA_FRDOC_0001 | Fisheries off West Coast States: Pacific Coast Groundfish Fishery; 2026 Pacific Whiting Harvest Specifications, 2026 Tribal Allocation, and 2026 Incidental Set-Aside | Proposed Rule | 2026-03-06T05:00:00Z | 2026 | 3 | 2026-03-06T05:00:00Z | 2026-03-24T03:59:59Z | 2026-03-06T17:55:55Z | 2026-04472 | 1 | 0 | 09000064b91f8455 | |
| NOAA_FRDOC_0001-7504 | NOAA | None NOAA_FRDOC_0001 | Comprehensive Fishery Management Plans for Puerto Rico, St. Croix, and St. Thomas and St. John; Correction | Rule | 2026-02-23T05:00:00Z | 2026 | 2 | 2026-02-23T05:00:00Z | 2026-02-23T18:49:19Z | 2026-03507 | 0 | 0 | 09000064b91d040e | ||
| NOAA_FRDOC_0001-7479 | NOAA | None NOAA_FRDOC_0001 | Fraser River Panel Salmon Fisheries: Inseason Orders | Rule | 2026-01-23T05:00:00Z | 2026 | 1 | 2026-01-23T05:00:00Z | 2026-01-23T17:30:39Z | 2026-01284 | 0 | 0 | 09000064b917bb43 | ||
| NOAA_FRDOC_0001-7474 | NOAA | None NOAA_FRDOC_0001 | Eliminating Redundant Regulatory Part Related to Public Information and Disclosure | Rule | 2026-01-16T05:00:00Z | 2026 | 1 | 2026-01-16T05:00:00Z | 2026-01-16T17:35:19Z | 2026-00815 | 0 | 0 | 09000064b915b385 | ||
| NOAA_FRDOC_0001-7470 | NOAA | None NOAA_FRDOC_0001 | Atlantic Surfclam and Ocean Quahog Fisheries: 2026 Fishing Quotas for Atlantic Surfclams and Ocean Quahogs and Suspension of Atlantic Surfclam Minimum Size Limit | Rule | 2026-01-13T05:00:00Z | 2026 | 1 | 2026-01-13T05:00:00Z | 2026-01-13T17:16:35Z | 2026-00479 | 0 | 0 | 09000064b9139324 | ||
| NOAA_FRDOC_0001-7467 | NOAA | None NOAA_FRDOC_0001 | Regulations Governing the Taking and Importing of Marine Mammals; CFR Correction | Rule | 2026-01-12T05:00:00Z | 2026 | 1 | 2026-01-12T05:00:00Z | 2026-01-13T00:33:38Z | 2026-00396 | 0 | 0 | 09000064b9136542 |
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;