documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FWS", docket_id = "FWS-R1-ES-2013-0088" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FWS-R1-ES-2013-0088-0112 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Endangered and Threatened Wildlife and Plants: Oregon Spotted Frog; Critical Habitat Designation | Proposed Rule | 2014-09-09T04:00:00Z | 2014 | 9 | 2014-09-09T04:00:00Z | 2014-09-24T03:59:59Z | 2014-09-24T01:02:43Z | 2014-21230 | 0 | 0 | 090000648186569b | |
| FWS-R1-ES-2013-0088-0097 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | OSF Perceptional Effects Memo July 16 2014 | Supporting & Related Material | Memorandum | 2014-07-17T04:00:00Z | 2014 | 7 | 2014-07-17T22:12:10Z | 0 | 0 | 09000064817b9d88 | |||
| FWS-R1-ES-2013-0088-0069 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Endangered and Threatened Wildlife and Plants: Designation of Critical Habitat for the Oregon Spotted Frog | Proposed Rule | 2014-06-18T04:00:00Z | 2014 | 6 | 2014-06-18T04:00:00Z | 2014-07-19T03:59:59Z | 2014-08-08T01:04:53Z | 2014-14184 | 0 | 0 | 090000648174fb50 | |
| FWS-R1-ES-2013-0088-0063 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Incremental Effects Memo for Oregon Spotted Frog | Supporting & Related Material | Memorandum | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:37Z | 0 | 0 | 090000648174e218 | |||
| FWS-R1-ES-2013-0088-0064 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Literature Cited Notice of Availability Economic Analysis OSF | Supporting & Related Material | Reference (external attachments) | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:37Z | 0 | 0 | 090000648174e219 | |||
| FWS-R1-ES-2013-0088-0062 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Addendum to Incremental Effects Memo Oregon Spotted Frog | Supporting & Related Material | Memorandum | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:36Z | 0 | 0 | 090000648174e1eb | |||
| FWS-R1-ES-2013-0088-0066 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Unit 12 Proposed Refinement OSF | Supporting & Related Material | Map | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:37Z | 0 | 0 | 090000648174e21b | |||
| FWS-R1-ES-2013-0088-0067 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Unit 13 Proposed Refinement OSF | Supporting & Related Material | Map | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:37Z | 0 | 0 | 090000648174e21c | |||
| FWS-R1-ES-2013-0088-0068 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Unit14 Proposed Refinement OSF | Supporting & Related Material | Map | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:38Z | 0 | 0 | 090000648174e21d | |||
| FWS-R1-ES-2013-0088-0065 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Unit 7 Proposed Refinement OSF | Supporting & Related Material | Map | 2014-06-17T04:00:00Z | 2014 | 6 | 2014-06-17T18:02:37Z | 0 | 0 | 090000648174e21a | |||
| FWS-R1-ES-2013-0088-0061 | FWS | Designation of Critical Habitat for the Oregon Spotted Frog FWS-R1-ES-2013-0088 | Screening Analysis Economic Analysis Oregon Spotted Frog | Supporting & Related Material | Economic Analysis | 2014-06-16T04:00:00Z | 2014 | 6 | 2014-06-16T19:32:07Z | 0 | 0 | 090000648174b417 |
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;