documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-HQ-ES-2012-0077" 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), last_modified (date)
document_type 2
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-HQ-ES-2012-0077-0006 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Literature Cited for 12-Month Finding for 3 Antelope | Supporting & Related Material | Index | 2013-06-06T04:00:00Z | 2013 | 6 | 2013-06-06T20:17:13Z | 0 | 0 | 090000648131148d | |||
| FWS-HQ-ES-2012-0077-0005 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Endangered and Threatened Wildlife and Plants: 12-Month Findings on Petitions to Delist U.S. Captive Populations of the Scimitar-horned Oryx, Dama Gazelle, and Addax | Proposed Rule | 2013-06-05T04:00:00Z | 2013 | 6 | 2013-06-05T04:00:00Z | 2013-06-05T13:30:20Z | 2013-13268 | 0 | 0 | 090000648130b7b4 | ||
| FWS-HQ-ES-2012-0077-0002 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Petition of the Exotic Wildlife Association to Remove the U.S. Captive-bred Population of Scimitar-Horned Oryx, Dama Gazelle, and Addax from the List of Endangered Species | Supporting & Related Material | Petition | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T13:25:42Z | 0 | 0 | 09000064810fe09c | |||
| FWS-HQ-ES-2012-0077-0004 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Literature Cited for 90-Day Finding for 3 Antelope | Supporting & Related Material | Index | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T13:25:57Z | 0 | 0 | 09000064810fdec9 | |||
| FWS-HQ-ES-2012-0077-0001 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Endangered and Threatened Wildlife and Plants: 90-Day Findings on Petitions to Delist U.S. Captive Populations of Scimitar-horned Oryx, Dama Gazelle, and Addax | Proposed Rule | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2012-09-19T13:24:51Z | 2012-23019 | 0 | 0 | 090000648111df5f | ||
| FWS-HQ-ES-2012-0077-0003 | FWS | Scimitar-horned Oryx, Dama Gazelle, and Addax FWS-HQ-ES-2012-0077 | Safari Club International Petition to Delist the U.S. Captive-bred Populations of Scimitar-Horned Oryx, Dama Gazelle and Addax from the Endangered Species Listing | Supporting & Related Material | Petition | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T13:25:51Z | 0 | 0 | 09000064810fe0a2 |
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;