documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NOAA-NMFS-2012-0236" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_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-2012-0236-0037 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Endangered and Threatened Wildlife; Determination on Whether To List the Harbor Seals in Iliamna Lake, Alaska as a Threatened or Endangered Species; Listing Determination | Notice | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T05:00:00Z | 2016-11-21T16:59:31Z | 0 | 0 | 09000064823ab386 | |||
| NOAA-NMFS-2012-0236-0043 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Recent Counts fesh water seals_withrow_ Jan 2009 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:24Z | 0 | 0 | 09000064823ab49e | ||||
| NOAA-NMFS-2012-0236-0039 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Biological Review Team DPS_eval_0216 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:11Z | 0 | 0 | 09000064823ab783 | ||||
| NOAA-NMFS-2012-0236-0045 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Freshwater Harbor Seals of Lake Iliamna, Alaska - Do They Pup and Over-Winter in the Lake? withrow-2011 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:30Z | 0 | 0 | 09000064823ab4a0 | ||||
| NOAA-NMFS-2012-0236-0038 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | 11-19-2012 Petition CBD Pacific Harbor Seal | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:07Z | 0 | 0 | 09000064823ab763 | ||||
| NOAA-NMFS-2012-0236-0042 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Recent Counts fresh waters seals_withrow-2008 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:21Z | 0 | 0 | 09000064823ab49d | ||||
| NOAA-NMFS-2012-0236-0044 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Lake Iliamna Seals Selected References | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:27Z | 0 | 0 | 09000064823ab49f | ||||
| NOAA-NMFS-2012-0236-0046 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | 11-17-16 webpage_https_alaskafisheries.noaa.gov_pr_harbor-seals | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:37:18Z | 0 | 0 | 09000064823ab4a2 | ||||
| NOAA-NMFS-2012-0236-0040 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Updated Counts and Research Coordination -withrow-2010 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:15Z | 0 | 0 | 09000064823ab49b | ||||
| NOAA-NMFS-2012-0236-0041 | NOAA | Petition to list Iliamna Lake seals under the ESA NOAA-NMFS-2012-0236 | Study Characterizing Local Use Patterns Local Traditional Knowledge and Seal Population Ecology 2009-2011 | Supporting & Related Material | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T17:33:18Z | 0 | 0 | 09000064823ab49c |
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;