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-0168" 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-0168-0065 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | Final EA for 2010 Gulf Gag Interim Rule 11-15-10 Part 3 Alternatives Envn consq RIR RFA OAL | Supporting & Related Material | 2010-12-01T05:00:00Z | 2010 | 12 | 2011-06-11T15:18:57Z | 0 | 0 | 0900006480baae9a | ||||
| NOAA-NMFS-2010-0168-0062 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Gag Grouper Management Measures | Rule | 2010-12-01T05:00:00Z | 2010 | 12 | 2010-12-01T05:00:00Z | 2011-12-01T21:42:05Z | 2010-30167 | 0 | 0 | 0900006480baaf0d | ||
| NOAA-NMFS-2010-0168-0064 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | Final EA for 2010 Gulf Gag Interim Rule 11-15-10 Part 2 Intro Affected Environment | Supporting & Related Material | 2010-12-01T05:00:00Z | 2010 | 12 | 2011-06-11T15:18:59Z | 0 | 0 | 0900006480baae99 | ||||
| NOAA-NMFS-2010-0168-0063 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | Final EA for 2010 Gulf Gag Interim Rule 11-15-10 Part 1 Title page FONSI TOC Abstract | Supporting & Related Material | 2010-12-01T05:00:00Z | 2010 | 12 | 2011-06-11T15:18:58Z | 0 | 0 | 0900006480baae98 | ||||
| NOAA-NMFS-2010-0168-0001 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | Fisheries of Caribbean, Gulf of Mexico, and South Atlantic: Reef Fish Fishery of Gulf of Mexico; Gag 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-26198 | 0 | 0 | 0900006480b71d71 | |
| NOAA-NMFS-2010-0168-0002 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | EA for 2010 Gulf Gag Interim Rule 9-28-10 Part 1 Title page FONSI TOC Abstract.pdf | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:53Z | 0 | 0 | 0900006480b632ca | ||||
| NOAA-NMFS-2010-0168-0003 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | EA for 2010 Gulf Gag Interim Rule 9-28-10 Part 2 Intro Affected Environment.pdf | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:54Z | 0 | 0 | 0900006480b632cd | ||||
| NOAA-NMFS-2010-0168-0004 | NOAA | Interim rule to set the 2010 commercial gag quota, set the recreational harvest, and reduce or suspend the use of multi-use individual fishing quota allocation NOAA-NMFS-2010-0168 | EA for 2010 Gulf Gag Interim Rule 9-28-10 Part 3 Alternatives Envn consq RIR RFA OAL.pdf | Supporting & Related Material | 2010-10-18T04:00:00Z | 2010 | 10 | 2011-06-11T15:18:53Z | 0 | 0 | 0900006480b632ce |
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;