documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2024-0011" 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-2024-0011-0008 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Reef Fish Resources of the Gulf of Mexico: 2024 Commercial and Recreational Accountability Measure and Closures for Gulf of Mexico Lane Snapper | Rule | 2024-11-26T05:00:00Z | 2024 | 11 | 2024-11-26T05:00:00Z | 2025-01-14T17:30:44Z | 2024-27699 | 0 | 0 | 0900006486837dfb | ||
| NOAA-NMFS-2024-0011-0007 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; Reopening of the Red Snapper Recreational For-Hire Fishing Season in the Gulf of Mexico | Rule | 2024-11-18T05:00:00Z | 2024 | 11 | 2024-11-18T05:00:00Z | 2024-11-18T16:27:08Z | 2024-26828 | 0 | 0 | 090000648681fcb4 | ||
| NOAA-NMFS-2024-0011-0006 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; 2024 Red Snapper Private Angling Component Closure in Federal Waters off Texas | Rule | 2024-09-04T04:00:00Z | 2024 | 9 | 2024-09-04T04:00:00Z | 2024-09-19T13:26:48Z | 2024-19744 | 0 | 0 | 09000064866bfa30 | ||
| NOAA-NMFS-2024-0011-0005 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Resources of the Gulf of Mexico; 2024 Recreational Harvest Closure for Gag | Rule | 2024-06-28T04:00:00Z | 2024 | 6 | 2024-06-28T04:00:00Z | 2024-07-08T19:36:30Z | 2024-14225 | 0 | 0 | 09000064865d0c1e | ||
| NOAA-NMFS-2024-0011-0002 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: 2024 Commercial Trip Limit Reduction and Closure for Gulf of Mexico Greater Amberjack | Rule | 2024-06-14T04:00:00Z | 2024 | 6 | 2024-06-14T04:00:00Z | 2024-06-14T15:51:49Z | 2024-13046 | 0 | 0 | 09000064865b6001 | ||
| NOAA-NMFS-2024-0011-0003 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2024 Red Snapper Private Angling Component Accountability Measure in Federal Waters off Alabama, Florida, and Mississippi | Rule | 2024-06-11T04:00:00Z | 2024 | 6 | 2024-06-11T04:00:00Z | 2024-06-14T15:52:28Z | 2024-12693 | 0 | 0 | 09000064865abb05 | ||
| NOAA-NMFS-2024-0011-0004 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of the Gulf of Mexico; 2024 Red Snapper Recreational For-Hire Fishing Season in the Gulf of Mexico | Rule | 2024-05-16T04:00:00Z | 2024 | 5 | 2024-05-16T04:00:00Z | 2024-06-14T15:53:28Z | 2024-10768 | 0 | 0 | 09000064865690fa | ||
| NOAA-NMFS-2024-0011-0001 | NOAA | 2024 Gulf of Mexico Inseasons NOAA-NMFS-2024-0011 | Reef Fish Fishery of the Gulf of Mexico: 2024 Recreational Accountability Measure and Closure for Gulf of Mexico Red Grouper | Rule | 2024-05-01T04:00:00Z | 2024 | 5 | 2024-05-01T04:00:00Z | 2024-05-01T12:49:23Z | 2024-09384 | 0 | 0 | 090000648652cb53 |
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;