documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2018-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2018-0012-0008 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: Reopening of the Commercial Sector for King Mackerel in the Gulf of Mexico Western Zone | Rule | 2018-11-09T05:00:00Z | 2018 | 11 | 2018-11-09T05:00:00Z | 2018-11-09T18:05:50Z | 2018-24589 | 0 | 0 | 09000064838bb31b | ||
| NOAA-NMFS-2018-0012-0006 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Reef Fish Fishery of the Gulf of Mexico: 2018 Commercial Accountability Measure and Closure for Gulf of Mexico Gray Triggerfish | Rule | 2018-10-11T04:00:00Z | 2018 | 10 | 2018-10-11T04:00:00Z | 2018-10-16T15:42:42Z | 2018-22142 | 0 | 0 | 09000064837bddef | ||
| NOAA-NMFS-2018-0012-0007 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2018-2019 Commercial Accountability Measure and Closure for King Mackerel in the Gulf of Mexico Western Zone | Rule | 2018-10-05T04:00:00Z | 2018 | 10 | 2018-10-05T04:00:00Z | 2018-11-09T18:03:35Z | 2018-21659 | 0 | 0 | 090000648379ce2c | ||
| NOAA-NMFS-2018-0012-0005 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Reef Fish Fishery of the Gulf of Mexico: 2018 Recreational Accountability Measure and Closure for Gulf of Mexico Gray Triggerfish | Rule | 2018-08-15T04:00:00Z | 2018 | 8 | 2018-08-15T04:00:00Z | 2018-08-15T14:38:03Z | 2018-17586 | 0 | 0 | 0900006483622cc7 | ||
| NOAA-NMFS-2018-0012-0004 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Coastal Migratory Pelagic Resources of Gulf of Mexico and Atlantic Region: 2017-2018 Commercial Closure for King Mackerel in Gulf of Mexico Northern Zone | Rule | 2018-05-16T04:00:00Z | 2018 | 5 | 2018-05-16T04:00:00Z | 2018-05-16T17:09:47Z | 2018-10434 | 0 | 0 | 090000648326dfbc | ||
| NOAA-NMFS-2018-0012-0003 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2018 Recreational Fishing Seasons for Red Snapper in Gulf of Mexico | Rule | 2018-04-23T04:00:00Z | 2018 | 4 | 2018-04-23T04:00:00Z | 2018-04-23T13:26:50Z | 2018-08419 | 0 | 0 | 09000064831a9eb5 | ||
| NOAA-NMFS-2018-0012-0002 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Gulf of Mexico Greater Amberjack; Commercial Accountability Measure and Closure | Rule | 2018-04-03T04:00:00Z | 2018 | 4 | 2018-04-03T04:00:00Z | 2018-04-03T19:48:47Z | 2018-06732 | 0 | 0 | 090000648308dd05 | ||
| NOAA-NMFS-2018-0012-0001 | NOAA | 2018 Gulf of Mexico Inseasons NOAA-NMFS-2018-0012 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2017-2018 Commercial Hook-and-Line Closure for King Mackerel in Gulf of Mexico Southern Zone | Rule | 2018-02-22T05:00:00Z | 2018 | 2 | 2018-02-22T05:00:00Z | 2018-02-23T12:55:03Z | 2018-03651 | 0 | 0 | 0900006482f51e1f |
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;