documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2018-0028" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, 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-0028-0026 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Georges Bank Cod Trip Limit Adjustment for the Common Pool Fishery | Rule | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-11-30T05:00:00Z | 2020-08-20T12:33:20Z | 2018-26072 | 0 | 0 | 09000064839160e0 | ||
| NOAA-NMFS-2018-0028-0025 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Fisheries of the Northeastern United States: Northeast Multispecies Fishery; Gulf of Maine Haddock Trimester Total Allowable Catch Area Closure for Common Pool Fishery | Rule | 2018-07-02T04:00:00Z | 2018 | 7 | 2018-07-02T04:00:00Z | 2020-08-20T12:30:08Z | 2018-14185 | 0 | 0 | 090000648348946f | ||
| NOAA-NMFS-2018-0028-0031 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Magnuson-Stevens Fishery Conservation and Management Act Provisions: Fisheries of the Northeastern United States; Northeast Multispecies Fishery; Framework Adjustment 57 | Rule | 2018-05-01T04:00:00Z | 2018 | 5 | 2018-05-01T04:00:00Z | 2020-08-21T18:31:09Z | 2018-09148 | 0 | 0 | 0900006483217522 | ||
| NOAA-NMFS-2018-0028-0006 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Fisheries of the Northeastern United States; Northeast Multispecies Fishery; Framework Adjustment 57 | Proposed Rule | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T04:00:00Z | 2018-04-07T03:59:59Z | 2018-04-07T01:01:34Z | 2018-05755 | 0 | 0 | 090000648303e5ae | |
| NOAA-NMFS-2018-0028-0005 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Framework 57 Environmental Assessment Appendix 3 ABC Projection Output | Supporting & Related Material | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T21:26:55Z | 0 | 0 | 0900006483041993 | ||||
| NOAA-NMFS-2018-0028-0001 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Framework 57 Environmental Assessment | Supporting & Related Material | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T21:22:26Z | 0 | 0 | 090000648304198e | ||||
| NOAA-NMFS-2018-0028-0004 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Framework 57 Environmental Assessment Appendix 2 Calculation of ACLs | Supporting & Related Material | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T21:25:54Z | 0 | 0 | 0900006483041991 | ||||
| NOAA-NMFS-2018-0028-0003 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Framework 57 Environmental Assessment Appendix 1 SSC ABC Recommendations | Supporting & Related Material | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T21:24:57Z | 0 | 0 | 0900006483041990 | ||||
| NOAA-NMFS-2018-0028-0002 | NOAA | Framework Adjustment 57 to the Northeast Multispecies FMP NOAA-NMFS-2018-0028 | Framework 57 Proposed Rule 83 FR 12531; March 22, 2018 | Proposed Rule | 2018-03-22T00:00:00Z | 2018 | 3 | 2018-03-26T15:21:26Z | 0 | 1 | 090000648304198f |
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;