documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FWS", docket_id = "FWS-R4-ES-2012-0006" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-R4-ES-2012-0006-0005 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | Petiton to List the Eastern Diamondback Rattlesnake as Threatened by Center for Biological Diversity, Coastal Plains Institute, One More Generation and Protecting All Living Species dated August 22, 2011 | Supporting & Related Material | Petition | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:38Z | 0 | 0 | 090000648100908a | |||
| FWS-R4-ES-2012-0006-0006 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | Amendment to Petition Dated December 9, 2011 | Supporting & Related Material | Petition | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:38Z | 0 | 0 | 09000064810090ae | |||
| FWS-R4-ES-2012-0006-0007 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | Literature Cited for Eastern Diamondback Rattlesnake 90-Day Dated March 22, 2012 | Supporting & Related Material | Index | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:38Z | 0 | 0 | 09000064810090af | |||
| FWS-R4-ES-2012-0006-0002 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | 43 FR 4026 Final Rule for Threatened Status for Eastern Indigo Snake Published January 31, 1978 | Supporting & Related Material | Publication - Other Governmental | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:37Z | 0 | 0 | 0900006481009085 | |||
| FWS-R4-ES-2012-0006-0003 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | 52 FR 25376, Final Rule Determination of Threatened Status for Gopher Tortoise Published July 7, 1987 | Supporting & Related Material | Publication - Other Governmental | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:37Z | 0 | 0 | 0900006481009086 | |||
| FWS-R4-ES-2012-0006-0004 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | 76 FR 45130, 12-Month Petition Finding to List the Gopher Tortoise Published on July 27, 2011 | Supporting & Related Material | Index | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:56:38Z | 0 | 0 | 0900006481009088 | |||
| FWS-R4-ES-2012-0006-0001 | FWS | Petition to List the Eastern Diamondback Rattlesnake as Threatened FWS-R4-ES-2012-0006 | Endangered and Threatened Wildlife and Plants: 90-Day Finding on a Petition to List the Eastern Diamondback Rattlesnake | Proposed Rule | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T04:00:00Z | 2012-07-10T03:59:59Z | 2012-07-14T02:01:05Z | 2012-11230 | 0 | 0 | 0900006481009b92 |
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;