documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2016-0068" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 7
| 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-0068-0084 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic Region; Amendment 37; Correction | Rule | 2017-08-24T04:00:00Z | 2017 | 8 | 2017-08-24T04:00:00Z | 2017-09-05T12:15:11Z | 2017-17970 | 0 | 0 | 0900006482ab1963 | ||
| NOAA-NMFS-2016-0068-0083 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic Region; Amendment 37 | Rule | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T04:00:00Z | 2017-08-07T15:42:23Z | 2017-15588 | 0 | 0 | 09000064829622cc | ||
| NOAA-NMFS-2016-0068-0073 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of the South Atlantic Region; Amendment 37 | Proposed Rule | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T05:00:00Z | 2017-01-18T04:59:59Z | 2017-01-09T14:03:04Z | 2016-30223 | 0 | 0 | 0900006482414335 | |
| NOAA-NMFS-2016-0068-0055 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | SGAm37_FEIS Sept 23 2016 (to EPA) | Notice | 2016-10-28T04:00:00Z | 2016 | 10 | 2016-10-28T04:00:00Z | 2016-11-29T04:59:59Z | 2016-11-16T02:00:40Z | 0 | 0 | 090000648235af3b | ||
| NOAA-NMFS-2016-0068-0043 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of the South Atlantic Region; Amendment 37 | Proposed Rule | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-10-07T04:00:00Z | 2016-12-07T04:59:59Z | 2016-12-07T14:01:31Z | 2016-24334 | 0 | 0 | 09000064822a9dc6 | |
| NOAA-NMFS-2016-0068-0044 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | SGAm37_FEIS Sept 23 2016 | Supporting & Related Material | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-10-07T13:11:07Z | 0 | 0 | 09000064822aa509 | ||||
| NOAA-NMFS-2016-0068-0001 | NOAA | Amendment 37 to the Fishery Management Plan for the Snapper-Grouper Fishery of the South Atlantic Region. Notice of Availability. NOAA-NMFS-2016-0068 | SGAm37_DEIS | Notice | 2016-06-17T04:00:00Z | 2016 | 6 | 2016-06-17T04:00:00Z | 2016-08-02T03:59:59Z | 2016-08-05T14:57:45Z | EIS No. 20160135 | 0 | 0 | 090000648204ae19 |
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;