documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NOAA-NMFS-2018-0138" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-NMFS-2018-0138-0018 | NOAA | Framework Adjustment 58 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2018-0138 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Northeast Multispecies Measures for Fishing Year 2020 | Rule | 2020-04-22T04:00:00Z | 2020 | 4 | 2020-04-22T04:00:00Z | 2020-08-20T17:50:41Z | 2020-08510 | 0 | 0 | 09000064844beee5 | ||
| NOAA-NMFS-2018-0138-0019 | NOAA | Framework Adjustment 58 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2018-0138 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Adjustment of Georges Bank and Southern New England/Mid-Atlantic Yellowtail Flounder Annual Catch Limits | Rule | 2020-04-03T04:00:00Z | 2020 | 4 | 2020-04-03T04:00:00Z | 2020-08-21T19:22:12Z | 2020-06460 | 0 | 0 | 0900006484484718 | ||
| NOAA-NMFS-2018-0138-0017 | NOAA | Framework Adjustment 58 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2018-0138 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Possession and Trip Limit Increases for the Common Pool Fishery | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-08-20T17:47:29Z | 2020-06183 | 0 | 0 | 09000064844635b7 | ||
| NOAA-NMFS-2018-0138-0020 | NOAA | Framework Adjustment 58 to the Northeast Multispecies Fishery Management Plan NOAA-NMFS-2018-0138 | Revisions to Framework Adjustment 58 to the Northeast Multispecies Fishery Management Plan and Sector Annual Catch Entitlements; Updated Annual Catch Limits for Sectors and the Common Pool for Fishing Year 2019; Correction | Rule | 2020-01-27T05:00:00Z | 2020 | 1 | 2020-01-27T05:00:00Z | 2022-12-06T21:32:02Z | 2020-00652 | 0 | 0 | 09000064842f58f6 |
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;