documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA_FRDOC_0001" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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-6697 | NOAA | None NOAA_FRDOC_0001 | Schedule of Fees for Access to NOAA Environmental Data, Information, and Related Products and Services | Rule | 2023-08-18T04:00:00Z | 2023 | 8 | 2023-08-18T04:00:00Z | 2023-08-18T12:31:21Z | 2023-17803 | 0 | 0 | 0900006485e8da92 | ||
| NOAA_FRDOC_0001-6674 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Mackerel, Squid, and Butterfish Fishery; Longfin Squid 2023 Trimester II Quota Harvested | Rule | 2023-08-02T04:00:00Z | 2023 | 8 | 2023-08-02T04:00:00Z | 2023-08-02T12:51:21Z | 2023-16480 | 0 | 0 | 0900006485dac5b8 | ||
| NOAA_FRDOC_0001-6668 | NOAA | None NOAA_FRDOC_0001 | Shore Leave for Professional Mariners | Rule | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-28T04:00:00Z | 2023-07-28T12:04:07Z | 2023-15680 | 0 | 0 | 0900006485d6ac36 | ||
| NOAA_FRDOC_0001-6666 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Atlantic Mackerel, Squid, and Butterfish Fishery Management Plan; 2023–2025 Specifications | Rule | 2023-07-27T04:00:00Z | 2023 | 7 | 2023-07-27T04:00:00Z | 2023-07-27T13:07:41Z | 2023-15924 | 0 | 0 | 0900006485d5d391 | ||
| NOAA_FRDOC_0001-6582 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Atlantic Spiny Dogfish Fishery; 2023 Specifications | Rule | 2023-05-03T04:00:00Z | 2023 | 5 | 2023-05-03T04:00:00Z | 2023-05-03T12:01:59Z | 2023-09391 | 0 | 0 | 09000064859c17da | ||
| NOAA_FRDOC_0001-6573 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Atlantic Sea Scallop Fishery; 2023 Closure of the Northern Gulf of Maine Scallop Management Area to the Limited Access General Category Fishery | Rule | 2023-04-24T04:00:00Z | 2023 | 4 | 2023-04-24T04:00:00Z | 2023-04-24T12:23:30Z | 2023-08601 | 0 | 0 | 090000648597a122 | ||
| NOAA_FRDOC_0001-6552 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Framework Adjustment 36 to the Atlantic Sea Scallop Fishery Management Plan | Rule | 2023-04-03T04:00:00Z | 2023 | 4 | 2023-04-03T04:00:00Z | 2023-04-03T16:07:33Z | 2023-06873 | 0 | 0 | 09000064858c51e7 | ||
| 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-6525 | NOAA | None NOAA_FRDOC_0001 | Fisheries of the Northeastern United States: Magnuson-Stevens Fishery Conservation and Management Act Provisions; Framework Adjustment 17 to the Summer Flounder, Scup, and Black Sea Bass Fishery Management Plan, and Framework Adjustment 6 to the Bluefish Fishery Management Plan | Rule | 2023-03-09T05:00:00Z | 2023 | 3 | 2023-03-09T05:00:00Z | 2023-03-09T13:22:29Z | 2023-04588 | 0 | 0 | 0900006485781da9 |
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;