documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2015-0038" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2015-0038-0009 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; 2016 Commercial Run-Around Gillnet Closure | Rule | 2016-03-11T05:00:00Z | 2016 | 3 | 2016-03-11T05:00:00Z | 2016-03-18T13:57:44Z | 2016-05482 | 0 | 0 | 0900006481ebc19d | ||
| NOAA-NMFS-2015-0038-0008 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Trip Limit Increase | Rule | 2016-03-04T05:00:00Z | 2016 | 3 | 2016-03-04T05:00:00Z | 2016-03-18T13:56:05Z | 2016-04798 | 0 | 0 | 0900006481e9fbb2 | ||
| NOAA-NMFS-2015-0038-0007 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: South Atlantic Greater Amberjack; Commercial Accountability Measure and Closure | Rule | 2016-01-20T05:00:00Z | 2016 | 1 | 2016-01-20T05:00:00Z | 2016-02-08T18:47:41Z | 2016-00907 | 0 | 0 | 0900006481e2097c | ||
| NOAA-NMFS-2015-0038-0006 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic: 2015-2016 Accountability Measure and Closure for Commercial King Mackerel in the Florida West Coast Northern Subzone; Correction, | Rule | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2016-01-12T12:52:36Z | 2015-31480 | 0 | 0 | 0900006481da73c4 | ||
| NOAA-NMFS-2015-0038-0005 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Accountability Measure and Closure for King Mackerel in the Florida West Coast Northern Subzone | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-12-03T12:15:24Z | 2015-30192 | 0 | 0 | 0900006481d762f0 | ||
| NOAA-NMFS-2015-0038-0004 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic: 2015-2016 Accountability Measure and Closure for King Mackerel in Western Zone of the Gulf of Mexico | Rule | 2015-11-18T05:00:00Z | 2015 | 11 | 2015-11-18T05:00:00Z | 2015-11-23T13:06:07Z | 2015-29475 | 0 | 0 | 0900006481d5488c | ||
| NOAA-NMFS-2015-0038-0003 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Trip Limit Increase | Rule | 2015-03-03T05:00:00Z | 2015 | 3 | 2015-03-03T05:00:00Z | 2015-03-09T16:04:18Z | 2015-04382 | 0 | 0 | 0900006481a275fa | ||
| NOAA-NMFS-2015-0038-0002 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources; 2015 Commercial Run-Around Gillnet Closure | Rule | 2015-02-24T05:00:00Z | 2015 | 2 | 2015-02-24T05:00:00Z | 2015-03-09T16:01:35Z | 2015-03738 | 0 | 0 | 0900006481a11d31 | ||
| NOAA-NMFS-2015-0038-0001 | NOAA | 2015 Inseason NOAA-NMFS-2015-0038 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Coastal Migratory Pelagic Resources of the Gulf of Mexico and South Atlantic; Trip Limit Reduction | Rule | 2015-02-20T05:00:00Z | 2015 | 2 | 2015-02-20T05:00:00Z | 2015-03-09T16:00:35Z | 2015-03532 | 0 | 0 | 0900006481a0c009 |
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;