documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2020-0009" 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-2020-0009-0007 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2021 Red Snapper Private Angling Component Closures in Federal Waters off Texas | Rule | 2020-12-07T05:00:00Z | 2020 | 12 | 2020-12-07T05:00:00Z | 2020-12-07T17:29:39Z | 2020-26797 | 0 | 0 | 0900006484989e14 | ||
| NOAA-NMFS-2020-0009-0006 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2020 Red Snapper Private Angling Component Accountability Measure in Federal Waters off Louisiana | Rule | 2020-09-25T04:00:00Z | 2020 | 9 | 2020-09-25T04:00:00Z | 2020-09-25T13:40:50Z | 2020-21246 | 0 | 0 | 09000064848790df | ||
| NOAA-NMFS-2020-0009-0005 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Re-Opening of Recreational Sector for Gulf of Mexico Gray Triggerfish | Rule | 2020-09-02T04:00:00Z | 2020 | 9 | 2020-09-02T04:00:00Z | 2020-09-09T11:49:47Z | 2020-19324 | 0 | 0 | 090000648483802d | ||
| NOAA-NMFS-2020-0009-0004 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2020 Red Snapper Private Angling Component Accountability Measure in Federal Waters off Texas | Rule | 2020-08-24T04:00:00Z | 2020 | 8 | 2020-08-24T04:00:00Z | 2020-08-24T16:06:12Z | 2020-18526 | 0 | 0 | 090000648481a33a | ||
| NOAA-NMFS-2020-0009-0003 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2020 Red Snapper Private Angling Component Closures in Federal Waters off Texas | Rule | 2020-04-07T04:00:00Z | 2020 | 4 | 2020-04-07T04:00:00Z | 2020-04-08T14:36:17Z | 2020-07177 | 0 | 0 | 090000648448e7c0 | ||
| NOAA-NMFS-2020-0009-0002 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: Closure for King Mackerel in the Gulf of Mexico Southern Zone | Rule | 2020-03-06T05:00:00Z | 2020 | 3 | 2020-03-06T05:00:00Z | 2020-03-06T14:05:43Z | 2020-04587 | 0 | 0 | 09000064843f9bbe | ||
| NOAA-NMFS-2020-0009-0001 | NOAA | 2020 Gulf of Mexico Inseasons NOAA-NMFS-2020-0009 | Coastal Migratory Pelagic Resources of the Gulf of Mexico and Atlantic Region: 2019-2020 Closure of Commercial Run-Around Gillnet for King Mackerel | Rule | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T05:00:00Z | 2020-02-28T14:18:16Z | 2020-04092 | 0 | 0 | 09000064843c52cc |
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;