documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NOAA-NMFS-2011-0041" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_end_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NOAA 9
| 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-0041-0212 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Endangered and Threatened Wildlife and Plants: Critical Habitat for Hawaiian Monk Seals | Rule | 2015-08-21T04:00:00Z | 2015 | 8 | 2015-08-21T04:00:00Z | 2015-12-03T18:00:49Z | 2015-20617 | 0 | 0 | 0900006481c30093 | ||
| NOAA-NMFS-2011-0041-0199 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Endangered and Threatened Wildlife and Plants: Revision of Critical Habitat for Hawaiian Monk Seals | Proposed Rule | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-06-25T19:20:27Z | 2012-15441 | 0 | 0 | 09000064810638a0 | ||
| NOAA-NMFS-2011-0041-0160 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Endangered and Threatened Wildlife and Plants: Critical Habitat for Hawaiian Monk Seals | Proposed Rule | 2011-11-07T05:00:00Z | 2011 | 11 | 2011-11-07T05:00:00Z | 2012-01-07T04:59:59Z | 2011-12-01T21:43:36Z | 2011-28784 | 0 | 0 | 0900006480f66fdd | |
| NOAA-NMFS-2011-0041-0016 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Endangered and Threatened Wildlife and Plants: Revise Critical Habitat for Hawaiian Monk Seals; Public Hearings | Proposed Rule | 2011-07-14T04:00:00Z | 2011 | 7 | 2011-07-14T04:00:00Z | 2011-09-01T03:59:59Z | 2012-03-24T19:34:55Z | 2011-17763 | 0 | 0 | 0900006480ec1bd0 | |
| NOAA-NMFS-2011-0041-0002 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Revision of Critical Habitat for Hawaiian Monk Seals Draft Biological Report | Supporting & Related Material | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-11T15:20:55Z | 0 | 0 | 0900006480e3906b | ||||
| NOAA-NMFS-2011-0041-0004 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Draft Economic Analysis of Critical Habitat Designation for the Hawaiian Monk Seal | Supporting & Related Material | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-11T15:20:54Z | 0 | 0 | 0900006480e3908a | ||||
| NOAA-NMFS-2011-0041-0005 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Citations for Proposed Rule to Revise Hawaiian Monk Seal Critical Habitat | Supporting & Related Material | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-11T15:20:54Z | 0 | 0 | 0900006480e39b51 | ||||
| NOAA-NMFS-2011-0041-0001 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Endangered and Threatened Wildlife and Plants: Critical Habitat for Hawaiian Monk Seals | Proposed Rule | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-02T04:00:00Z | 2011-09-01T03:59:59Z | 2012-09-19T02:02:12Z | 2011-13381 | 0 | 0 | 0900006480e398af | |
| NOAA-NMFS-2011-0041-0003 | NOAA | Response to a Petition to Revise Hawaiian Monk Seal Critical Habitat NOAA-NMFS-2011-0041 | Revision of Critical Habitat for Hawaiian Monk Seals Draft ESA Section 4(b)(2) Report | Supporting & Related Material | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-11T15:20:54Z | 0 | 0 | 0900006480e39089 |
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;