documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FWS", docket_id = "FWS-R1-ES-2012-0097" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, comment_start_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-R1-ES-2012-0097-0552 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH- USFWS 1994- Selkirk Mountain Woodland Caribou Recovery Plan | Supporting & Related Material | Report | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43e0 | |||
| FWS-R1-ES-2012-0097-0553 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH - Property Management Plan - The Nature Conservancy 2011 | Supporting & Related Material | Report | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43e1 | |||
| FWS-R1-ES-2012-0097-0547 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH- DeGroot Personal Communication 2012 | Supporting & Related Material | Technical Support Document | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:49Z | 0 | 0 | 0900006481ed46b8 | |||
| FWS-R1-ES-2012-0097-0554 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH- Caribou Habitat Modeling - Kinley and Apps 2007 | Supporting & Related Material | Report | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43e2 | |||
| FWS-R1-ES-2012-0097-0550 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH- Scott and Servheen 1984 | Supporting & Related Material | Report | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43de | |||
| FWS-R1-ES-2012-0097-0548 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 Critical Habitat Designation Final Rule | Supporting & Related Material | Reference (internal unless indicated) | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:49Z | 0 | 0 | 0900006481ed46b9 | |||
| FWS-R1-ES-2012-0097-0549 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | Mountain Caribou 2009 Recovery Implementation Plan | Supporting & Related Material | Technical Support Document | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43dd | |||
| FWS-R1-ES-2012-0097-0551 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | 2012 CH- Scott and Servheen1985 | Supporting & Related Material | Report | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T13:06:50Z | 0 | 0 | 0900006481ed43df | |||
| FWS-R1-ES-2012-0097-0546 | FWS | Petition to Delist the Southern Selkirk Mountains Population of Woodland Caribou FWS-R1-ES-2012-0097 | Endangered and Threatened Wildlife and Plants: Southern Selkirk Mountains Population of Woodland Caribou; Amended Listing | Proposed Rule | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T04:00:00Z | 2016-05-20T03:59:59Z | 2016-06-08T01:00:35Z | 2016-08617 | 0 | 0 | 0900006481f73039 |
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;