documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FWS-R6-ES-2011-0019" 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)
document_type 2
agency_id 1
- FWS 5
| 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-R6-ES-2011-0019-0010 | FWS | Arapahoe snowfly FWS-R6-ES-2011-0019 | Petition to List the Arapahoe Snowfly as Endangered by The Xerces Society for Invertebrate Conservation Dated April 6, 2010 | Supporting & Related Material | Petition | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:58:52Z | 0 | 0 | 09000064810090b0 | |||
| FWS-R6-ES-2011-0019-0011 | FWS | Arapahoe snowfly FWS-R6-ES-2011-0019 | Citations from Arapahoe Snowfly 12-month Finding | Supporting & Related Material | Index | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:58:52Z | 0 | 0 | 09000064810090b1 | |||
| FWS-R6-ES-2011-0019-0009 | FWS | Arapahoe snowfly FWS-R6-ES-2011-0019 | Endangered and Threatened Wildlife and Plants: 12-Month Finding on a Petition to List the Arapahoe Snowfly | Proposed Rule | 2012-05-10T04:00:00Z | 2012 | 5 | 2012-05-10T13:58:22Z | 2012-11229 | 0 | 0 | 0900006481009b2c | |||
| FWS-R6-ES-2011-0019-0002 | FWS | Arapahoe snowfly FWS-R6-ES-2011-0019 | Literature Cited | Supporting & Related Material | 2011-04-26T04:00:00Z | 2011 | 4 | 2011-04-26T14:43:26Z | 0 | 0 | 0900006480c37769 | ||||
| FWS-R6-ES-2011-0019-0001 | FWS | Arapahoe snowfly FWS-R6-ES-2011-0019 | Endangered and Threatened Wildlife and Plants: 90-Day Finding on Petition to List Arapahoe Snowfly as Endangered or Threatened | Proposed Rule | 2011-04-26T04:00:00Z | 2011 | 4 | 2011-04-26T04:00:00Z | 2011-06-28T03:59:59Z | 2011-04-26T14:42:30Z | 2011-09973 | 0 | 0 | 0900006480c397a0 |
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;