documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA_FRDOC_0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-7287 | NOAA | None NOAA_FRDOC_0001 | Rescinding the Definition of Harm under the Endangered Species Act | Proposed Rule | 2025-04-17T04:00:00Z | 2025 | 4 | 2025-04-20T04:19:25Z | 2025-06746 | 0 | 0 | 0900006486a9a14e | |||
| NOAA_FRDOC_0001-7224 | NOAA | None NOAA_FRDOC_0001 | Implementation of Provisions of the Illegal, Unreported, and Unregulated Fishing Enforcement Act of 2015, the Ensuring Access to Pacific Fisheries Act, and the James M. Inhofe National Defense Authorization Act for Fiscal Year 2023 | Proposed Rule | 2025-01-16T05:00:00Z | 2025 | 1 | 2025-01-16T05:00:00Z | 2025-01-17T02:30:39Z | 2025-00716 | 0 | 0 | 09000064868c8cee | ||
| NOAA_FRDOC_0001-6800 | NOAA | None NOAA_FRDOC_0001 | Magnuson-Stevens Fishery Conservation and Management Act: Seafood Import Monitoring Program | Proposed Rule | 2023-11-16T05:00:00Z | 2023 | 11 | 2023-11-16T05:00:00Z | 2023-11-16T16:44:38Z | 2023-25309 | 0 | 0 | 0900006486285f1a | ||
| NOAA_FRDOC_0001-6548 | NOAA | None NOAA_FRDOC_0001 | Magnuson-Stevens Fishery Conservation and Management Act: Seafood Import Monitoring Program | Proposed Rule | 2023-03-31T04:00:00Z | 2023 | 3 | 2023-03-31T04:00:00Z | 2023-03-31T12:40:39Z | 2023-06739 | 0 | 0 | 09000064858a1630 | ||
| NOAA_FRDOC_0001-6182 | NOAA | None NOAA_FRDOC_0001 | Civil Procedures in Civil Administrative Enforcement Proceedings | Proposed Rule | 2022-03-24T04:00:00Z | 2022 | 3 | 2022-03-24T04:00:00Z | 2022-04-26T03:59:59Z | 2022-03-24T12:06:12Z | 2022-05845 | 0 | 0 | 0900006484fde438 | |
| NOAA_FRDOC_0001-5622 | NOAA | None NOAA_FRDOC_0001 | General Provisions for Domestic Fisheries: Pacific Coast Groundfish Fishery; Application for an Exempted Fishing Permit | Proposed Rule | 2020-09-14T04:00:00Z | 2020 | 9 | 2020-09-14T04:00:00Z | 2020-09-30T03:59:59Z | 2020-09-22T01:00:28Z | 2020-19060 | 0 | 0 | 09000064848562c8 | |
| NOAA_FRDOC_0001-4149 | NOAA | None NOAA_FRDOC_0001 | Atlantic Herring Fishery Management Plan: New England Fishery Management Council Meeting | Proposed Rule | 2016-12-23T05:00:00Z | 2016 | 12 | 2016-12-23T05:00:00Z | 2016-12-23T14:03:31Z | 2016-30821 | 0 | 0 | 0900006482433e58 | ||
| NOAA_FRDOC_0001-3787 | NOAA | None NOAA_FRDOC_0001 | New England Fishery Management Council: Whiting Committee Meeting | Proposed Rule | 2016-03-17T04:00:00Z | 2016 | 3 | 2016-03-17T04:00:00Z | 2016-03-17T12:26:23Z | 2016-06048 | 0 | 0 | 0900006481ecaf12 |
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;