documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-R4-ES-2008-0047" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-R4-ES-2008-0047-0039 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Endangered and Threatened Wildlife and Plants: Designation of Critical Habitat for the Louisiana Black Bear (Ursus americanus luteolus) | Rule | 2009-03-10T04:00:00Z | 2009 | 3 | 2009-03-10T04:00:00Z | 2013-02-26T17:26:05Z | E9-04536 | 0 | 0 | 0900006480902281 | ||
| FWS-R4-ES-2008-0047-0020 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Draft Economic Analysis | Supporting & Related Material | 2008-11-13T05:00:00Z | 2008 | 11 | 2013-02-26T17:26:02Z | 0 | 0 | 09000064807a7680 | ||||
| FWS-R4-ES-2008-0047-0016 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Designation of Critical Habitat for the Louisiana Black Bear: Proposed rule; reopening of comment period, notice of availability of draft economic analysis, and amended required determinations | Proposed Rule | 2008-11-12T05:00:00Z | 2008 | 11 | 2008-11-12T05:00:00Z | 2008-12-13T04:59:59Z | 2013-02-26T17:26:02Z | E8-26733 | 0 | 0 | 09000064807a4e78 | |
| FWS-R4-ES-2008-0047-0019 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Federal Register Notice of Availability | Supporting & Related Material | 2008-11-12T00:00:00Z | 2008 | 11 | 2013-02-26T17:26:02Z | 0 | 1 | 09000064807a5c9f | ||||
| FWS-R4-ES-2008-0047-0018 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Draft Economic Analysis | Supporting & Related Material | 2008-11-12T00:00:00Z | 2008 | 11 | 2013-02-26T17:26:02Z | 0 | 1 | 09000064807a5c2c | ||||
| FWS-R4-ES-2008-0047-0001 | FWS | Designation of Critical Habitat for the Louisiana Black Bear FWS-R4-ES-2008-0047 | Designation of Critical Habitat for the Louisiana Black Bear (Ursus americanus luteolus); Proposed rule | Proposed Rule | 2008-05-06T04:00:00Z | 2008 | 5 | 2008-05-06T04:00:00Z | 2008-07-08T03:59:59Z | 2013-02-26T17:25:59Z | E8-09635 | 0 | 0 | 090000648054b5df |
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;