documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FWS-R8-ES-2013-0042" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), 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-R8-ES-2013-0042-0186 | FWS | Designation of Critical Habitat for the Bi-State Distinct Population Segment of the Greater Sage Grouse FWS-R8-ES-2013-0042 | References Cited Proposed Critical Habitat Bi-State Greater Sage-Grouse | Supporting & Related Material | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T17:08:50Z | 0 | 0 | 0900006481723222 | ||||
| FWS-R8-ES-2013-0042-0187 | FWS | Designation of Critical Habitat for the Bi-State Distinct Population Segment of the Greater Sage Grouse FWS-R8-ES-2013-0042 | Draft Economic Analysis Bi-state DPS GreaterSageGrouse | Supporting & Related Material | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T17:08:50Z | 0 | 0 | 0900006481723223 | ||||
| FWS-R8-ES-2013-0042-0185 | FWS | Designation of Critical Habitat for the Bi-State Distinct Population Segment of the Greater Sage Grouse FWS-R8-ES-2013-0042 | Endangered and Threatened Wildlife and Plants: Bi-State Distinct Population Segment of Greater Sage-Grouse; Critical Habitat Designation; Extension of Comment Period | Proposed Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-07-04T03:59:59Z | 2014-07-04T01:03:18Z | 2014-12858 | 0 | 0 | 0900006481725e2d | |
| FWS-R8-ES-2013-0042-0181 | FWS | Designation of Critical Habitat for the Bi-State Distinct Population Segment of the Greater Sage Grouse FWS-R8-ES-2013-0042 | Endangered and Threatened Wildlife and Plants: Greater Sage-Grouse; Bi-State Distinct Population Segment; Special Rule and Designation of Critical Habitat | Proposed Rule | 2014-05-09T04:00:00Z | 2014 | 5 | 2014-05-09T04:00:00Z | 2014-05-09T12:59:58Z | 2014-10640 | 0 | 0 | 09000064816ebcd5 | ||
| FWS-R8-ES-2013-0042-0173 | FWS | Designation of Critical Habitat for the Bi-State Distinct Population Segment of the Greater Sage Grouse FWS-R8-ES-2013-0042 | Endangered and Threatened Wildlife and Plants: Threatened Status for the Bi-State Distinct Population Segment of Greater Sage-Grouse with Special Rule and Designation of Critical Habitat | Proposed Rule | 2014-04-08T04:00:00Z | 2014 | 4 | 2014-04-08T04:00:00Z | 2014-06-10T03:59:59Z | 2014-05-29T01:06:23Z | 2014-07409 | 0 | 0 | 09000064816a8188 |
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;