documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2010-0161" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2010-0161-0021 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Red Grouper Management Measures | Rule | 2010-12-01T05:00:00Z | 2010 | 12 | 2010-12-01T05:00:00Z | 2011-12-01T21:42:05Z | 2010-30168 | 0 | 0 | 0900006480baaf82 | ||
| NOAA-NMFS-2010-0161-0005 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Part 3 Affected Environment | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:50Z | 0 | 0 | 0900006480b5d958 | ||||
| NOAA-NMFS-2010-0161-0004 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Part 2 Introduction | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:50Z | 0 | 0 | 0900006480b5d955 | ||||
| NOAA-NMFS-2010-0161-0007 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Part 5 RIR RFA OAL References | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:50Z | 0 | 0 | 0900006480b5d95b | ||||
| NOAA-NMFS-2010-0161-0003 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Part 1 FONSI TOC Exec Summ | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:49Z | 0 | 0 | 0900006480b5d954 | ||||
| NOAA-NMFS-2010-0161-0001 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Red Grouper Management Measures | Proposed Rule | 2010-10-18T04:00:00Z | 2010 | 10 | 2010-10-18T04:00:00Z | 2010-11-03T03:59:59Z | 2011-12-01T21:42:01Z | 2010-26197 | 0 | 0 | 0900006480b71d97 | |
| NOAA-NMFS-2010-0161-0002 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Parts 1-5 | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:48Z | 0 | 0 | 0900006480b5d953 | ||||
| NOAA-NMFS-2010-0161-0006 | NOAA | Rule to Set the Gulf of Mexico Commercial Red Grouper and Shallow-water Grouper Quotas NOAA-NMFS-2010-0161 | 2010 Gulf Red Grouper Regulatory Amendment Part 4 Alternatives and Enviromental Consequences | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:50Z | 0 | 0 | 0900006480b5d95a |
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;