documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2014-0065" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, 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-2014-0065-0044 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coral, Coral Reefs, and Live/Hard Bottom Habitats of the South Atlantic Region; Amendment 8; Correction | Rule | 2016-02-16T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2016-03-18T13:25:24Z | C1-2015-25488 | 0 | 0 | 0900006481e6e284 | ||
| NOAA-NMFS-2014-0065-0043 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coral, Coral Reefs, and Live/Hard Bottom Habitats of the South Atlantic Region; Amendment 8; Correction | Rule | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T04:00:00Z | 2015-12-18T18:34:06Z | 2015-25488 | 0 | 0 | 0900006481cb6378 | ||
| NOAA-NMFS-2014-0065-0042 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coral, Coral Reefs, and Live/Hard Bottom Habitats of the South Atlantic Region; Amendment 8; Correction | Rule | 2015-08-04T04:00:00Z | 2015 | 8 | 2015-08-04T04:00:00Z | 2015-12-18T18:33:39Z | 2015-19009 | 0 | 0 | 0900006481bbeb1b | ||
| NOAA-NMFS-2014-0065-0039 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coral, Coral Reefs, and Live/Hard Bottom Habitats of the South Atlantic Region; Amendment 8; Correction | Proposed Rule | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-07-04T03:59:59Z | 2014-08-01T11:35:45Z | 2014-15414 | 0 | 0 | 090000648177856a | |
| NOAA-NMFS-2014-0065-0040 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico and South Atlantic: Amendment 8 to the Fishery Management Plan for Coral, Coral Reefs, and Live/Hardbottom Habitats of the South Atlantic Region; Correction | Proposed Rule | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-07-22T03:59:59Z | 2014-08-01T11:36:29Z | 2014-15417 | 0 | 0 | 09000064817787d4 | |
| NOAA-NMFS-2014-0065-0002 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coral, Coral Reefs, and Live/Hard Bottom Habitats of the South Atlantic Region; Amendment 8 | Proposed Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-07-04T03:59:59Z | 2014-07-05T01:02:48Z | 2014-12655 | 0 | 0 | 0900006481725d72 | |
| NOAA-NMFS-2014-0065-0001 | NOAA | Amendment 8 to the Fishery Management Plan for the Coral, Coral Reefs and Live/Hardbottom Habitats NOAA-NMFS-2014-0065 | Fisheries of the Caribbean, Gulf of Mexico and South Atlantic: Fishery Management Plan for Coral, etc., of the South Atlantic Region; Amendment 8 | Proposed Rule | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T04:00:00Z | 2014-07-22T03:59:59Z | 2014-07-31T01:59:02Z | 2014-11622 | 0 | 0 | 090000648170574d |
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;