documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2009-0130" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2009-0130-0009 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic; Closure of 2009-2010 Commercial Fishery for Black Sea Bass | Rule | 2009-12-09T05:00:00Z | 2009 | 12 | 2009-12-09T05:00:00Z | 2011-06-11T15:14:58Z | E9-29442 | 0 | 0 | 0900006480a66c15 | ||
| NOAA-NMFS-2009-0130-0008 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; Closure of the 2009 Commercial Harvest of Gulf of Mexico Greater Amberjack | Rule | 2009-11-05T05:00:00Z | 2009 | 11 | 2009-11-05T05:00:00Z | 2011-06-11T15:14:59Z | E9-26699 | 0 | 0 | 0900006480a51775 | ||
| NOAA-NMFS-2009-0130-0007 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; Closure of the 2009 Gulf of Mexico Recreational Fishery for Greater Amberjack | Rule | 2009-10-22T04:00:00Z | 2009 | 10 | 2009-10-22T04:00:00Z | 2011-06-11T15:14:59Z | E9-25449 | 0 | 0 | 0900006480a47d14 | ||
| NOAA-NMFS-2009-0130-0006 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Snapper-grouper Fishery of the South Atlantic; Closure of the July-December 2009 Commercial Fishery for Vermilion Snapper in the South Atlantic | Rule | 2009-09-10T04:00:00Z | 2009 | 9 | 2009-09-10T04:00:00Z | 2011-06-11T15:14:59Z | E9-21823 | 0 | 0 | 0900006480a2024f | ||
| NOAA-NMFS-2009-0130-0005 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Snapper-grouper Fishery of the South Atlantic; Closure of the 2009 Commercial Fishery for Golden Tilefish in the South Atlantic | Rule | 2009-07-10T04:00:00Z | 2009 | 7 | 2009-07-10T04:00:00Z | 2011-06-11T15:15:00Z | E9-16378 | 0 | 0 | 09000064809ee10d | ||
| NOAA-NMFS-2009-0130-0004 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; Closure of the 2009 Deepwater Grouper Commercial Fishery | Rule | 2009-06-22T04:00:00Z | 2009 | 6 | 2011-06-11T15:14:54Z | E9-14610 | 0 | 0 | 09000064809d55e6 | |||
| NOAA-NMFS-2009-0130-0003 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Snapper-grouper Fishery of the South Atlantic; Closure of the 2009 Commercial Fishery for Black Sea Bass in the South Atlantic | Rule | 2009-05-14T04:00:00Z | 2009 | 5 | 2009-05-14T04:00:00Z | 2011-06-11T15:15:00Z | E9-11298 | 0 | 0 | 09000064809918ab | ||
| NOAA-NMFS-2009-0130-0002 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; Closure of the 2009 Commercial Fishery for Tilefishes | Rule | 2009-05-13T04:00:00Z | 2009 | 5 | 2009-05-13T04:00:00Z | 2011-06-11T15:14:59Z | E9-11153 | 0 | 0 | 090000648098e72b | ||
| NOAA-NMFS-2009-0130-0001 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic; Reef Fish Fishery of the Gulf of Mexico; Closure of the 2009 Gulf of Mexico Recreational Fishery for Red Snapper | Rule | 2009-05-08T04:00:00Z | 2009 | 5 | 2011-06-11T15:15:01Z | E9-10822 | 0 | 0 | 090000648097f986 |
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;