documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FWS", document_type = "Other" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_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-R2-ES-2008-0059-0011 | FWS | Sonoran Desert Area Bald Eagle FWS-R2-ES-2008-0059 | Raptor Research Fdn Comments | Other | 2008-07-29T00:00:00Z | 2008 | 7 | 2013-02-26T18:16:37Z | 0 | 1 | 090000648069f80f | ||||
| FWS-R7-SM-2008-0052-0001 | FWS | Subsistence Management Regulations for Public Lands in Alaska; Federal Subsistence Regional Advisory Council Membership FWS-R7-SM-2008-0052 | Subsistence Management Regulations for Public Lands in Alaska; Federal Subsistence Regional Advisory Council Membership | Other | 2008-04-10T04:00:00Z | 2008 | 4 | 2008-04-10T04:00:00Z | 2013-02-26T18:39:59Z | 0 | 0 | 09000064804a326b | |||
| FWS-R7-SM-2008-0036-0001 | FWS | Subsistence Management Regulations for Public Lands in Alaska, Subpart D; Seasonal Adjustments FWS-R7-SM-2008-0036 | Subsistence Management Regulations for Public Lands in Alaska, Subpart D; Seasonal Adjustments | Other | 2008-04-07T04:00:00Z | 2008 | 4 | 2008-04-07T04:00:00Z | 2013-02-26T18:39:59Z | 0 | 0 | 090000648046594f | |||
| FWS-R6-ES-2008-0023-0001 | FWS | Bonneville Cut-Throat Trout FWS-R6-ES-2008-0023 | Endangered and Threatened Wildlife and Plants; 12-Month Finding on a Petition To List the Bonneville Cutthroat Trout (Oncorhynchus clarki utah) as Threatened or Endangered | Other | 2008-02-07T05:00:00Z | 2008 | 2 | 2008-02-07T05:00:00Z | 2008-04-08T03:59:59Z | 2014-01-17T21:44:36Z | 0 | 0 | 09000064803a9ed7 | ||
| FWS-R9-FHC-2008-0015-0001 | FWS | Injurious Wildlife Species; Constrictor Snakes from Python, Boa, and Eunectes Genera FWS-R9-FHC-2008-0015 | Injurious Wildlife Species; Review of Information Concerning Constrictor Snakes From Python, Boa, and Eunectes genera | Other | 2008-01-31T05:00:00Z | 2008 | 1 | 2008-01-31T05:00:00Z | 2008-05-01T03:59:59Z | 2013-02-26T17:39:23Z | 0 | 0 | 09000064803a565f |
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;