documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2019-0011" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2019-0011-0009 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Reef Fish Fishery of the Gulf of Mexico: Gulf of Mexico Lane Snapper; Commercial and Recreational Accountability Measure and Closures | Rule | 2019-12-13T05:00:00Z | 2019 | 12 | 2019-12-13T05:00:00Z | 2019-12-13T20:03:52Z | 2019-26933 | 0 | 0 | 090000648420c05f | ||
| NOAA-NMFS-2019-0011-0008 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Reef Fish Fishery of the Gulf of Mexico: 2019 Commercial Accountability Measure and Closure for Gulf of Mexico Gray Triggerfish | Rule | 2019-11-26T05:00:00Z | 2019 | 11 | 2019-11-26T05:00:00Z | 2019-11-26T13:45:26Z | 2019-25602 | 0 | 0 | 09000064841b75c1 | ||
| NOAA-NMFS-2019-0011-0007 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2019-2020 Commercial Closure for King Mackerel in the Gulf of Mexico Western Zone | Rule | 2019-11-21T05:00:00Z | 2019 | 11 | 2019-11-21T05:00:00Z | 2019-11-21T13:36:17Z | 2019-25222 | 0 | 0 | 090000648418fa32 | ||
| NOAA-NMFS-2019-0011-0006 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2019-2020 Commercial Quota Reduction for King Mackerel Run-Around Gillnet Fishery | Rule | 2019-11-13T05:00:00Z | 2019 | 11 | 2019-11-13T05:00:00Z | 2019-11-13T18:56:28Z | 2019-24516 | 0 | 0 | 090000648414d61e | ||
| NOAA-NMFS-2019-0011-0005 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Reef Fish Fishery of the Gulf of Mexico: 2019 Commercial Accountability Measures; Annual Catch Limit and Annual Catch Target Reductions | Rule | 2019-08-22T04:00:00Z | 2019 | 8 | 2019-08-22T04:00:00Z | 2019-08-22T15:57:20Z | 2019-18129 | 0 | 0 | 0900006483e8c2c2 | ||
| NOAA-NMFS-2019-0011-0004 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Gulf of Mexico Greater Amberjack; 2019 Commercial Accountability Measure and Closure | Rule | 2019-05-16T04:00:00Z | 2019 | 5 | 2019-05-16T04:00:00Z | 2019-05-17T12:09:55Z | 2019-10131 | 0 | 0 | 0900006483c8906b | ||
| NOAA-NMFS-2019-0011-0003 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Reef Fish Fishery of the Gulf of Mexico: Gulf of Mexico Greater Amberjack; Recreational Accountability Measure and Closure | Rule | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-25T04:00:00Z | 2019-04-16T19:17:38Z | 2019-05517 | 0 | 0 | 0900006483b24c9c | ||
| NOAA-NMFS-2019-0011-0002 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Reef Fish Fishery of the Gulf of Mexico: Gulf of Mexico Gray Triggerfish; Recreational Accountability Measure and Closure | Rule | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-25T04:00:00Z | 2019-04-16T19:16:53Z | 2019-05509 | 0 | 0 | 0900006483b24b38 | ||
| NOAA-NMFS-2019-0011-0001 | NOAA | 2019 Gulf of Mexico Inseasons NOAA-NMFS-2019-0011 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2018-2019 Commercial Hook-and-Line Closure for King Mackerel in the Gulf of Mexico Southern Zone | Rule | 2019-02-25T05:00:00Z | 2019 | 2 | 2019-02-25T05:00:00Z | 2019-02-25T15:29:23Z | 2019-03190 | 0 | 0 | 0900006483aa2ce9 |
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;