documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FWS" and docket_id = "FWS-R1-ES-2013-0009" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FWS · 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FWS-R1-ES-2013-0009-0024 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Lark and Butterfly Final Memo | Supporting & Related Material | Memorandum | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T11:38:21Z | 0 | 0 | 09000064816ede52 | |||
| FWS-R1-ES-2013-0009-0023 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Final Economic Analysis of Critical Habitat Designation for Prairie Species of Western Washington and Oregon | Supporting & Related Material | Economic Assessment | 2013-10-18T04:00:00Z | 2013 | 10 | 2013-10-18T16:00:37Z | 0 | 0 | 0900006481454557 | |||
| FWS-R1-ES-2013-0009-0022 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | UTM mapping coordinates for final critical habitat for the Taylor’s Checkerspot Butterfly | Supporting & Related Material | 2013-10-17T04:00:00Z | 2013 | 10 | 2013-10-17T15:29:06Z | 0 | 0 | 090000648143963c | ||||
| FWS-R1-ES-2013-0009-0021 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Literature Cited for Final Rule | Supporting & Related Material | 2013-10-17T04:00:00Z | 2013 | 10 | 2013-10-17T15:29:06Z | 0 | 0 | 0900006481433fb8 | ||||
| FWS-R1-ES-2013-0009-0020 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Endangered and Threatened Wildlife and Plants: Designation of Critical Habitat for Taylor's Checkerspot Butterfly and Streaked Horned Lark | Rule | 2013-10-03T04:00:00Z | 2013 | 10 | 2013-10-03T04:00:00Z | 2013-10-17T15:28:37Z | 2013-23552 | 0 | 0 | 0900006481444c56 | ||
| FWS-R1-ES-2013-0009-0005 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Draft Economic Analysis of Critical Habitat Designation for Prairie Species of Western Washington and Oregon | Supporting & Related Material | Economic Analysis | 2013-04-12T04:00:00Z | 2013 | 4 | 2013-04-12T21:17:07Z | 0 | 0 | 0900006481292932 | |||
| FWS-R1-ES-2013-0009-0001 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Endangered and Threatened Wildlife and Plants: Listing and Designation of Critical Habitat for Taylor's Checkerspot Butterfly, Streaked Horned Lark, and Four Subspecies of Mazama Pocket Gopher | Proposed Rule | 2013-04-03T04:00:00Z | 2013 | 4 | 2013-04-03T04:00:00Z | 2013-05-04T03:59:59Z | 2013-05-10T01:07:07Z | 2013-07792 | 0 | 0 | 090000648125c73f | |
| FWS-R1-ES-2013-0009-0002 | FWS | Critical Habitat Designation for Taylor’s checkerspot butterfly and Streaked horned lark FWS-R1-ES-2013-0009 | Draft Economic Analysis of Critical Habitat Designation for Prairie Species of Western Washington and Oregon | Supporting & Related Material | 2013-04-03T00:00:00Z | 2013 | 4 | 2013-04-12T21:14:12Z | 0 | 1 | 090000648126490f |
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;