documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2009-0130" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-0016 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic; Reopening of 2010-2011 Commercial Sector for Black Sea Bass in South Atlantic | Rule | 2010-11-24T05:00:00Z | 2010 | 11 | 2010-11-24T05:00:00Z | 2011-12-01T21:42:04Z | 2010-29657 | 0 | 0 | 0900006480ba20c6 | ||
| NOAA-NMFS-2009-0130-0015 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Closure of 2010 Gulf of Mexico Commercial Sector for Greater Amberjack | Rule | 2010-10-19T04:00:00Z | 2010 | 10 | 2010-10-19T04:00:00Z | 2011-12-01T21:42:01Z | 2010-26284 | 0 | 0 | 0900006480b72963 | ||
| NOAA-NMFS-2009-0130-0013 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic; Closure of July-December 2010Commercial Sector for Vermilion Snapper in South Atlantic | Rule | 2010-09-29T04:00:00Z | 2010 | 9 | 2010-09-29T04:00:00Z | 2011-12-01T21:42:00Z | 2010-24454 | 0 | 0 | 0900006480b6307a | ||
| NOAA-NMFS-2009-0130-0014 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Fishery of South Atlantic; Closure of Commercial Sectorfor Black Sea Bass in South Atlantic | Rule | 2010-09-29T04:00:00Z | 2010 | 9 | 2010-09-29T04:00:00Z | 2011-12-01T21:42:00Z | 2010-24450 | 0 | 0 | 0900006480b63095 | ||
| NOAA-NMFS-2009-0130-0012 | 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 | Rule | 2010-04-12T04:00:00Z | 2010 | 4 | 2010-04-12T04:00:00Z | 2011-06-11T15:14:57Z | 2010-08296 | 0 | 0 | 0900006480ad5ac3 | ||
| NOAA-NMFS-2009-0130-0011 | 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 | Rule | 2010-03-10T05:00:00Z | 2010 | 3 | 2010-03-10T05:00:00Z | 2011-06-11T15:14:53Z | 2010-05128 | 0 | 0 | 0900006480ab9db2 | ||
| NOAA-NMFS-2009-0130-0010 | NOAA | Inseason Actions NOAA-NMFS-2009-0130 | Fisheries of the Caribbean, Gulf of Mexico, and South Atlantic: Snapper-Grouper Resources of the South Atlantic; Trip Limit Reduction | Rule | 2010-03-09T05:00:00Z | 2010 | 3 | 2010-03-09T05:00:00Z | 2011-06-11T15:14:58Z | 2010-04985 | 0 | 0 | 0900006480ab8ea9 |
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;