documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FWS", docket_id = "FWS-R8-ES-2009-0062" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2009-0062-0063 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | Economic Analysis of Critical Habitat Designation for the Buena Vista Lake Shrew | Supporting & Related Material | Economic Analysis | 2013-07-03T04:00:00Z | 2013 | 7 | 2013-07-03T14:08:05Z | 0 | 0 | 0900006481354d88 | |||
| FWS-R8-ES-2009-0062-0061 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | References Cited List Buena Vista Lake Shrew Revised Final Rule to Designate Critical Habitat | Supporting & Related Material | Reference (internal unless indicated) | 2013-07-03T04:00:00Z | 2013 | 7 | 2013-07-03T14:08:04Z | 0 | 0 | 0900006481354d86 | |||
| FWS-R8-ES-2009-0062-0062 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | BVLS Final Critical Habitat Map Coordinates | Supporting & Related Material | Map | 2013-07-03T04:00:00Z | 2013 | 7 | 2013-07-03T14:08:05Z | 0 | 0 | 0900006481354d87 | |||
| FWS-R8-ES-2009-0062-0060 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | Endangered and Threatened Species: Buena Vista Lake Shrew; Critical Habitat Designation | Rule | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T04:00:00Z | 2013-07-02T14:03:28Z | 2013-15586 | 0 | 0 | 0900006481351806 | ||
| FWS-R8-ES-2009-0062-0054 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | Endangered and Threatened Species: Buena Vista Lake Shrew, Critical Habitat Designation | Proposed Rule | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2013-05-07T03:59:59Z | 2013-04-27T01:01:30Z | 2013-04785 | 0 | 0 | 09000064812181db | |
| FWS-R8-ES-2009-0062-0055 | FWS | Designation of Critical Habitat for the Buena Vista Lake Shrew FWS-R8-ES-2009-0062 | Draft Economic Analysis of Critical Habitat Designation for the Buena Vista Lake Shrew | Supporting & Related Material | Economic Analysis | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T13:56:19Z | 0 | 0 | 0900006481216ba7 |
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;