documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NOAA-NMFS-2010-0036" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0036-1379 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Endangered and Threatened Wildlife and Plants: Final Listing Determinations on Proposal to List 66 Reef-building Coral Species and to Reclassify Elkhorn and Staghorn Corals | Rule | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T04:00:00Z | 2014-10-06T23:38:03Z | 2014-20814 | 0 | 0 | 090000648186849a | ||
| NOAA-NMFS-2010-0036-1378 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Endangered and Threatened Wildlife and Plants: Listing 66 Species of Coral and Reclassifying Acropora cervicornis and Acropora palmata from Threatened to Endangered | Proposed Rule | 2013-09-20T04:00:00Z | 2013 | 9 | 2013-09-20T04:00:00Z | 2013-10-23T21:28:48Z | 2013-22944 | 0 | 0 | 090000648142db43 | ||
| NOAA-NMFS-2010-0036-0469 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Endangered and Threatened Species: Listing of 66 Reef-Building Coral Species; Reclassification of Elkhorn Acropora palmata and Staghorn Acropora cervicornis | Proposed Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-04-07T03:59:59Z | 2013-04-09T02:02:44Z | 2013-04150 | 0 | 0 | 09000064812069cd | |
| NOAA-NMFS-2010-0036-0398 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Endangered and Threatened Wildlife and Plants: Proposed Listing Determinations for 82 Reef-building Coral Species; Proposed Reclassification of Acropora palmata and Acropora cervicornis from Threatened to Endangered | Proposed Rule | 2012-12-07T05:00:00Z | 2012 | 12 | 2012-12-07T05:00:00Z | 2013-03-08T04:59:59Z | 2013-04-23T01:04:17Z | 2012-29350 | 0 | 0 | 090000648118259f | |
| NOAA-NMFS-2010-0036-0397 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Petition to List 83 Species of Coral as Threatened or Endangered under Endangered Species Act: Availability of Reports, Request for Information, and Public Listening Sessions and Scientific Workshops | Proposed Rule | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-08-01T03:59:59Z | 2012-05-03T23:40:50Z | 2012-09243 | 0 | 0 | 0900006480ff27be | |
| NOAA-NMFS-2010-0036-0001 | NOAA | Response to a Petition to List 83 Coral Species Under the ESA NOAA-NMFS-2010-0036 | Endangered and Threatened Wildlife: Finding on a Petition to List 83 Species of Corals as Threatened or Endangered Under the Endangered Species Act | Proposed Rule | 2010-02-10T05:00:00Z | 2010 | 2 | 2010-02-10T05:00:00Z | 2010-04-13T03:59:59Z | 2011-06-11T15:17:35Z | 2010-02939 | 0 | 0 | 0900006480a90b1f |
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;