documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2018-0031" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-NMFS-2018-0031-0010 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: Magnuson-Stevens Fishery Conservation and Management Act Provisions; Southern Red Hake Accountability Measure | Rule | 2020-08-25T04:00:00Z | 2020 | 8 | 2020-08-25T04:00:00Z | 2022-12-23T17:59:27Z | 2020-18396 | 0 | 0 | 090000648481d17c | ||
| NOAA-NMFS-2018-0031-0008 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: Small-Mesh Multispecies Fishery; Inseason Adjustment to the Southern Red Hake Possession Limit | Rule | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T05:00:00Z | 2022-12-14T23:11:22Z | 2020-02175 | 0 | 0 | 090000648432b962 | ||
| NOAA-NMFS-2018-0031-0007 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: Small-Mesh Multispecies Fishery; Inseason Adjustment to the Northern Red Hake Possession Limit | Rule | 2019-09-12T04:00:00Z | 2019 | 9 | 2019-09-12T04:00:00Z | 2022-12-14T19:58:12Z | 2019-19808 | 0 | 0 | 0900006483f43e9c | ||
| NOAA-NMFS-2018-0031-0006 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: Small-Mesh Multispecies Fishery; Inseason Adjustment to the Northern Red Hake Possession Limit | Rule | 2019-02-28T05:00:00Z | 2019 | 2 | 2019-02-28T05:00:00Z | 2022-12-14T19:07:56Z | 2019-03457 | 0 | 0 | 0900006483aaf5ef | ||
| NOAA-NMFS-2018-0031-0005 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: Small-Mesh Multispecies Fishery; Inseason Adjustment to the Southern Red Hake Possession Limit | Rule | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2022-12-14T18:50:55Z | 2018-27689 | 0 | 0 | 09000064839be27e | ||
| NOAA-NMFS-2018-0031-0009 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: 2018-2020 Small-Mesh Multispecies Specifications | Rule | 2018-06-14T04:00:00Z | 2018 | 6 | 2022-12-23T17:52:52Z | 2018-12780 | 0 | 0 | 090000648340f7b0 | |||
| NOAA-NMFS-2018-0031-0001 | NOAA | Fisheries of the Northeastern United States; 2018-2020 Small Mesh Multispecies Specifications NOAA-NMFS-2018-0031 | Fisheries of the Northeastern United States: 2018-2020 Small-Mesh Multispecies Specifications | Proposed Rule | 2018-04-12T04:00:00Z | 2018 | 4 | 2018-04-12T04:00:00Z | 2018-04-28T03:59:59Z | 2018-04-27T01:01:37Z | 2018-07536 | 0 | 0 | 090000648312baff |
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;