documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2013-0170" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, fr_doc_num, 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-2013-0170-0010 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Dolphin and Wahoo Fishery Off the Atlantic States; Amendment 5 | Rule | 2014-06-09T04:00:00Z | 2014 | 6 | 2014-06-09T04:00:00Z | 2014-06-09T13:47:13Z | 2014-13257 | 0 | 0 | 090000648172fc8f | ||
| NOAA-NMFS-2013-0170-0005 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Dolphin and Wahoo Fishery Off the Atlantic States; Amendment 5 | Proposed Rule | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T04:00:00Z | 2014-04-15T03:59:59Z | 2014-04-15T01:04:03Z | 2014-05581 | 0 | 0 | 0900006481665ef1 | |
| NOAA-NMFS-2013-0170-0001 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | DW Amend 5 FINAL 112113 | Supporting & Related Material | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T13:45:41Z | 0 | 0 | 09000064815ea1a5 | ||||
| NOAA-NMFS-2013-0170-0003 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | 79FR11383 (Dolphin Wahoo 5, NOA publ. Feb. 28, 2014) | Notice | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T05:00:00Z | 2014-04-30T03:59:59Z | 2014-04-30T01:02:36Z | 2014-04457 | 0 | 0 | 09000064815ea1a4 | |
| NOAA-NMFS-2013-0170-0002 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | Appendices (combined) | Supporting & Related Material | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T13:45:49Z | 0 | 0 | 09000064815ea1a7 | ||||
| NOAA-NMFS-2013-0170-0004 | NOAA | Amendment 5 to the Fishery Management Plan for the Dolphin Wahoo Fishery of the Atlantic (Dolphin Wahoo Amendment 5) NOAA-NMFS-2013-0170 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Dolphin and Wahoo Fishery Off the Atlantic States; Amendment 5 | Proposed Rule | 2014-02-28T05:00:00Z | 2014 | 2 | 2014-02-28T05:00:00Z | 2014-02-28T16:07:44Z | 2014-04457 | 0 | 0 | 09000064815eae9f |
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;