documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2011-0187" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NOAA 6
| 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-2011-0187-0007 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | Subsistence Taking of Northern Fur Seals on the Pribilof Islands: Annual Harvest Estimates | Rule | 2014-08-06T04:00:00Z | 2014 | 8 | 2014-08-06T04:00:00Z | 2014-08-11T17:14:11Z | 2014-18610 | 0 | 0 | 0900006481807336 | ||
| NOAA-NMFS-2011-0187-0006 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | FINAL ENVIRONMENTAL IMPACT STATEMENT May 2005 | Supporting & Related Material | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T16:53:16Z | 0 | 0 | 090000648177ed15 | ||||
| NOAA-NMFS-2011-0187-0004 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | Subsistence Taking of Northern Fur Seals on the Pribilof Islands Harvests for 2011-2013 and Proposed Annual Harvest Estimates for 2014-2016 | Proposed Rule | 2014-05-14T04:00:00Z | 2014 | 5 | 2014-05-14T04:00:00Z | 2014-06-14T03:59:59Z | 2014-06-12T17:26:04Z | 2014-11103 | 0 | 0 | 09000064816f929e | |
| NOAA-NMFS-2011-0187-0003 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | Marine Mammals: Subsistence Taking of Northern Fur Seals; Harvest Estimates | Rule | 2012-02-09T05:00:00Z | 2012 | 2 | 2012-02-09T05:00:00Z | 2012-03-24T19:31:34Z | 2012-03052 | 0 | 0 | 0900006480fb0fb4 | ||
| NOAA-NMFS-2011-0187-0002 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | Final estimates of annual fur seal subsistence needs | Rule | 2012-02-09T05:00:00Z | 2012 | 2 | 2012-02-09T05:00:00Z | 2012-02-09T15:41:02Z | 77 | 0 | 0 | 0900006480fb12fc | ||
| NOAA-NMFS-2011-0187-0001 | NOAA | Marine Mammals; Subsistence Taking of Northern Fur Seals; Harvest Estimates NOAA-NMFS-2011-0187 | Marine Mammals: Subsistence Taking of Northern Fur Seals; Harvest Estimates | Proposed Rule | 2011-07-29T04:00:00Z | 2011 | 7 | 2011-07-29T04:00:00Z | 2011-08-30T03:59:59Z | 2011-12-01T21:43:27Z | 2011-19255 | 0 | 0 | 0900006480ecf4bd |
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;