documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-R2-ES-2012-0082" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FWS 6
| 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-R2-ES-2012-0082-0013 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | Endangered and Threatened Wildlife and Plants: Revised Critical Habitat for the Comal Springs Dryopid Beetle, Comal Springs Riffle Beetle, and Peck's Cave Amphipod | Rule | 2013-10-23T04:00:00Z | 2013 | 10 | 2013-10-23T04:00:00Z | 2013-10-23T13:54:09Z | 2013-24168 | 0 | 0 | 090000648145ac09 | ||
| FWS-R2-ES-2012-0082-0008 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | Endangered and Threatened Wildlife and Plants: Proposed Revision of Critical Habitat for Comal Springs Dryopid Beetle, Comal Springs Riffle Beetle, and Peck's Cave Amphipod | Proposed Rule | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T04:00:00Z | 2013-06-04T03:59:59Z | 2013-06-08T01:02:06Z | 2013-09895 | 0 | 0 | 09000064812b1c5f | |
| FWS-R2-ES-2012-0082-0009 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | Draft Economic Analysis of Critical Habitat Designation for the Comal Springs Dryopid Beetle, Comal Springs Riffle Beetle, and Peck's Cave Amphipod | Supporting & Related Material | Economic Analysis | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T14:31:22Z | 0 | 0 | 09000064812b1f7b | |||
| FWS-R2-ES-2012-0082-0001 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | Endangered and Threatened Wildlife and Plants: Proposed Revision of Critical Habitat for the Comal Springs Dryopid Beetle, Comal Springs Riffle Beetle, and Peck's Cave Amphipod | Proposed Rule | 2012-10-19T04:00:00Z | 2012 | 10 | 2012-10-19T04:00:00Z | 2012-12-19T04:59:59Z | 2013-02-01T03:01:24Z | 2012-25578 | 0 | 0 | 090000648114872b | |
| FWS-R2-ES-2012-0082-0003 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | UTM Coordinates for Comal Springs Invertebrates Proposed Critical Habitat Revision | Supporting & Related Material | Technical Support Document | 2012-10-19T04:00:00Z | 2012 | 10 | 2012-10-19T13:42:28Z | 0 | 0 | 09000064811487cf | |||
| FWS-R2-ES-2012-0082-0002 | FWS | Comal Springs dryopid beetle, Comal Springs riffle beetle, and Peck's cave amphipod FWS-R2-ES-2012-0082 | References Cited for Comal Springs Invertebrates Proposed Critical Habitat Revision | Supporting & Related Material | Index | 2012-10-19T04:00:00Z | 2012 | 10 | 2012-10-19T13:37:39Z | 0 | 0 | 090000648113f8d6 |
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;