documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2013-0047" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: withdrawn, posted_date (date), comment_start_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-0047-0007 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; Extension of the 2014 Gulf of Mexico Recreational Red Grouper Season | Rule | 2014-09-12T04:00:00Z | 2014 | 9 | 2014-09-12T04:00:00Z | 2014-10-07T12:23:30Z | 2014-21765 | 0 | 0 | 090000648186d06a | ||
| NOAA-NMFS-2013-0047-0006 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Reef Fish Fishery of the Gulf of Mexico: 2013 Accountability Measure and Closure for Hogfish in the Gulf of Mexico | Rule | 2013-12-03T05:00:00Z | 2013 | 12 | 2013-12-03T05:00:00Z | 2013-12-05T15:13:47Z | 2013-28907 | 0 | 0 | 09000064814a3e17 | ||
| NOAA-NMFS-2013-0047-0005 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Reef Fish Fishery of the Gulf of Mexico: 2013 Recreational Accountability Measure and Closure for Gray Triggerfish in the Gulf of Mexico | Rule | 2013-10-04T04:00:00Z | 2013 | 10 | 2013-10-04T04:00:00Z | 2013-10-22T15:27:09Z | 2013-24361 | 0 | 0 | 09000064814456f9 | ||
| NOAA-NMFS-2013-0047-0004 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2013 Commercial Accountability Measure and Closure for Gulf of Mexico Greater Amberjack | Rule | 2013-06-20T04:00:00Z | 2013 | 6 | 2013-06-20T04:00:00Z | 2013-07-03T13:52:22Z | 2013-14745 | 0 | 0 | 09000064813343a5 | ||
| NOAA-NMFS-2013-0047-0003 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; Amendment 37 | Rule | 2013-05-09T00:00:00Z | 2013 | 5 | 2013-06-06T18:33:04Z | 0 | 1 | 09000064812d19e9 | ||||
| NOAA-NMFS-2013-0047-0002 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Gulf of Mexico Reef Fish Fishery; 2013 Accountability Measure for Gulf of Mexico Commercial Gray Triggerfish | Rule | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2013-06-06T18:13:18Z | 2013-05056 | 0 | 0 | 090000648121812c | ||
| NOAA-NMFS-2013-0047-0001 | NOAA | IN-SEASON ACCOUNTABILITY MEASURES NOAA-NMFS-2013-0047 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2013 Accountability Measures for Gulf of Mexico Commercial Greater Amberjack | Rule | 2013-02-27T05:00:00Z | 2013 | 2 | 2013-02-27T05:00:00Z | 2013-03-04T16:47:30Z | 2013-04598 | 0 | 0 | 090000648120cbf1 |
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;