documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2016-0138" and posted_year = 2016 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-2016-0138-1043 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States: Summer Flounder Fishery; Commercial Quota Harvested for Connecticut | Rule | 2016-12-27T05:00:00Z | 2016 | 12 | 2016-12-27T05:00:00Z | 2017-05-16T18:50:06Z | 2016-31194 | 0 | 0 | 0900006482436cf4 | ||
| NOAA-NMFS-2016-0138-1040 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States: Summer Flounder, Scup, and Black Sea Bass Fisheries; 2017-2018 Summer Flounder Specifications and Announcement of 2017 Summer Flounder and Black Sea Bass Commercial Accountability Measures | Rule | 2016-12-22T05:00:00Z | 2016 | 12 | 2016-12-22T05:00:00Z | 2017-05-16T18:37:00Z | 2016-30876 | 0 | 0 | 09000064824302c0 | ||
| NOAA-NMFS-2016-0138-1042 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States: Summer Flounder Fishery; Quota Transfer | Rule | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T05:00:00Z | 2017-05-16T18:42:58Z | 2016-30041 | 0 | 0 | 09000064824234cc | ||
| NOAA-NMFS-2016-0138-1041 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States: Summer Flounder Fishery; Quota Transfer | Rule | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2017-05-16T18:41:32Z | 2016-29574 | 0 | 0 | 09000064823f4ad8 | ||
| NOAA-NMFS-2016-0138-0001 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States; Summer Flounder Fishery; 2017 and 2018 Summer Flounder Specifications | Notice | 2016-11-15T05:00:00Z | 2016 | 11 | 2016-11-15T05:00:00Z | 2016-12-01T04:59:59Z | 2016-12-03T02:01:33Z | 2016-27410 | 0 | 0 | 0900006482397df6 | |
| NOAA-NMFS-2016-0138-1039 | NOAA | 2017 and 2018 Specifications for the Summer Flounder Fishery NOAA-NMFS-2016-0138 | Fisheries of the Northeastern United States: Summer Flounder Fishery; Commercial Quota Harvested for the Commonwealth of Massachusetts | Rule | 2016-08-22T04:00:00Z | 2016 | 8 | 2016-08-22T04:00:00Z | 2017-05-16T18:38:53Z | 2016-19995 | 0 | 0 | 090000648218dcf5 |
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;