documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FWS-R2-ES-2016-0099" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 8
| 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-2016-0099-0013 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Guadalupe Fescue Species Status Assessment Report and Literature Cited | Supporting & Related Material | Report | 2017-09-07T04:00:00Z | 2017 | 9 | 2017-09-07T13:37:54Z | 0 | 0 | 0900006482b10fcb | |||
| FWS-R2-ES-2016-0099-0012 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Endangered and Threatened Species: Status for Guadalupe Fescue; Designation of Critical Habitat for Guadalupe Fescue | Rule | 2017-09-07T04:00:00Z | 2017 | 9 | 2017-09-07T04:00:00Z | 2017-09-07T13:35:16Z | 2017-19001 | 0 | 0 | 0900006482b131fc | ||
| FWS-R2-ES-2016-0099-0007 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Endangered and Threatened Species: Reopening Comment Periods for Five Proposed Rules - Guadalupe Fescue | Proposed Rule | 2017-06-13T04:00:00Z | 2017 | 6 | 2017-06-13T04:00:00Z | 2017-07-14T03:59:59Z | 2017-07-14T01:02:02Z | 2017-11968 | 0 | 0 | 09000064826cc6d8 | |
| FWS-R2-ES-2016-0099-0004 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Guadalupe Fescue Incremental Effects Memo | Supporting & Related Material | Memorandum | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T13:38:32Z | 0 | 0 | 0900006482172bbc | |||
| FWS-R2-ES-2016-0099-0003 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Final Guadalupe Fescue Species Status Assessment | Supporting & Related Material | Report | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T13:38:18Z | 0 | 0 | 0900006482172bba | |||
| FWS-R2-ES-2016-0099-0002 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Literature Cited fro Guadalupe Fescue Proposed Listing Rule | Supporting & Related Material | Reference (external attachments) | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T13:37:51Z | 0 | 0 | 0900006482172bbb | |||
| FWS-R2-ES-2016-0099-0005 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Guadalupe Fescue Screening Memo | Supporting & Related Material | Memorandum | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T13:38:40Z | 0 | 0 | 0900006482172bbd | |||
| FWS-R2-ES-2016-0099-0001 | FWS | Endangered Species Status for Guadalupe Fescue FWS-R2-ES-2016-0099 | Endangered and Threatened Wildlife and Plants: Endangered Species Status for Guadalupe Fescue | Proposed Rule | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T04:00:00Z | 2016-11-09T04:59:59Z | 2016-11-09T02:02:22Z | 2016-21588 | 0 | 0 | 09000064821e762a |
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;