documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NMFS-2012-0154" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Proposed Rule 4
- Notice 1
- Other 1
- Rule 1
agency_id 1
- NOAA 7
| 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-2012-0154-0359 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | Endangered and Threatened Species: Eleven Distinct Population Segments of the Green Sea Turtle (Chelonia mydas); Listing and Revision of Current Listings | Rule | 2016-04-06T04:00:00Z | 2016 | 4 | 2016-04-06T04:00:00Z | 2018-11-05T16:54:41Z | 2016-07587 | 0 | 0 | 0900006481f2e196 | ||
| NOAA-NMFS-2012-0154-0360 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | GREEN TURTLE FINAL LISTING RULE REFERENCES | Other | 2016-04-06T04:00:00Z | 2016 | 4 | 2016-04-06T15:55:42Z | 0 | 0 | 0900006481f32f01 | ||||
| NOAA-NMFS-2012-0154-0337 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | Endangered and Threatened Species: Green Sea Turtles (Chelonia mydas); Identification and Listing of Eleven Distinct Population Segments as Endangered or Threatened and Revision of Current Listings | Proposed Rule | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T12:40:50Z | 2015-21150 | 0 | 0 | 0900006481c3a930 | |||
| NOAA-NMFS-2012-0154-0330 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | Endangered and Threatened Species: Identification and Proposed Listing of Eleven Distinct Population Segments of Green Sea Turtles (Chelonia mydas) as Endangered or Threatened and Revision of Current Listings; Second Extension of Comment Period | Proposed Rule | 2015-07-27T04:00:00Z | 2015 | 7 | 2015-07-27T12:52:38Z | 2015-18246 | 0 | 0 | 0900006481ba671e | |||
| NOAA-NMFS-2012-0154-0306 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | Endangered and Threatened Species Identification and Proposed Listing of Eleven Distinct Population Segments of Green Sea Turtles (Chelonia mydas) as Endangered or Threatened and Revision of Current Listings; Public Hearings; Extension of Comment Period | Proposed Rule | 2015-06-17T04:00:00Z | 2015 | 6 | 2015-06-17T13:17:06Z | 2015-14906 | 0 | 0 | 0900006481b4083c | |||
| NOAA-NMFS-2012-0154-0001 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | 90-Day Finding on a Petition to Delist the Green Turtle in Hawaii and Notice of Status Review. | Notice | 2012-08-01T04:00:00Z | 2012 | 8 | 2012-08-01T04:00:00Z | 2012-10-02T03:59:59Z | 2015-06-15T17:22:23Z | 0 | 0 | 09000064810bbcc8 | ||
| NOAA-NMFS-2012-0154-0002 | NOAA | Endangered and Threatened Wildlife: Response to a Petition to Identify Green Sea Turtle Distinct Population Segments under the Endangered Species Act NOAA-NMFS-2012-0154 | Endangered and Threatened Wildlife: 90-day Finding on Petition to Delist Green Turtle in Hawaii and Notice of Status Review. | Proposed Rule | 2012-08-01T00:00:00Z | 2012 | 8 | 2015-06-15T17:22:44Z | 0 | 1 | 09000064810bc439 |
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;