documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NOAA-NMFS-2015-0035" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NOAA 8
| 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-2015-0035-0247 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | References cited - final hbw rule | Supporting & Related Material | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-13T14:36:27Z | 0 | 0 | 09000064821eb7e2 | ||||
| NOAA-NMFS-2015-0035-0248 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | Endangered and Threatened Species: Identification of 14 Distinct Population Segments of Humpback Whale, Megaptera novaeangliae, and Revision of Species-Wide Listing | Rule | 2016-09-08T04:00:00Z | 2016 | 9 | 2016-09-08T04:00:00Z | 2016-09-15T14:42:24Z | 2016-21276 | 0 | 0 | 09000064821e1032 | ||
| NOAA-NMFS-2015-0035-0239 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | Endangered and Threatened Species: Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-Wide Listing | Proposed Rule | 2016-03-18T04:00:00Z | 2016 | 3 | 2016-03-18T04:00:00Z | 2016-04-19T03:59:59Z | 2016-04-19T01:00:29Z | 2016-06116 | 0 | 0 | 0900006481ece2dd | |
| NOAA-NMFS-2015-0035-0238 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | draft hbw PDMP 03-17-16 final draft | Supporting & Related Material | 2016-03-18T04:00:00Z | 2016 | 3 | 2016-03-18T14:39:37Z | 0 | 0 | 0900006481ece74a | ||||
| NOAA-NMFS-2015-0035-0237 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | draft hbw PDMP 03-17-16 final draft | Other | 2016-03-18T04:00:00Z | 2016 | 3 | 2016-03-18T04:00:00Z | 2016-03-18T14:35:21Z | 0 | 0 | 0900006481ece74b | |||
| NOAA-NMFS-2015-0035-0135 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | Bettridge et al 2015 HumpbackStatusReview NOAA-TM-NMFS-SWFSC-540 | Supporting & Related Material | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T22:02:24Z | 0 | 0 | 0900006481ab45a0 | ||||
| NOAA-NMFS-2015-0035-0134 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | HBW proposed rule references | Supporting & Related Material | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T22:02:24Z | 0 | 0 | 0900006481ade06c | ||||
| NOAA-NMFS-2015-0035-0001 | NOAA | Endangered and Threatened Species; Identification of 14 Distinct Population Segments of the Humpback Whale (Megaptera novaeangliae) and Proposed Revision of Species-wide Listing NOAA-NMFS-2015-0035 | Endangered and Threatened Species: Humpback Whale (Megaptera novaeangliae); Identification of 14 Distinct Population Segments and Revision of Species-wide Listing | Proposed Rule | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-07-21T03:59:59Z | 2016-08-12T01:00:18Z | 2015-09010 | 0 | 0 | 0900006481ab121d |
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;