documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FWS", docket_id = "FWS-HQ-MB-2018-0090" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_end_date, 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-HQ-MB-2018-0090-8631 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Regulations Governing Take of Migratory Birds | Supporting & Related Material | Environmental Impact Statement | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T12:01:32Z | 0 | 0 | 09000064846ddec8 | |||
| FWS-HQ-MB-2018-0090-8411 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Comment on this document for EIS No. 20200117, Draft, USFWS, REG, Regulations Governing Take of Migratory Birds, Comment Period Ends: 07/20/2020 | Notice | 2020-06-05T04:00:00Z | 2020 | 6 | 2020-06-05T04:00:00Z | 2020-07-21T03:59:59Z | 2021-04-02T01:00:54Z | 2020-12206 | 0 | 0 | 09000064846cd3a4 | |
| FWS-HQ-MB-2018-0090-8412 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Draft EIS for Regulations Governing Take of Migratory Birds | Supporting & Related Material | 2020-06-05T00:00:00Z | 2020 | 6 | 2020-06-10T12:02:10Z | 0 | 1 | 09000064846c670d | ||||
| FWS-HQ-MB-2018-0090-0173 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Regulatory Impact Analysis, January 2020 | Supporting & Related Material | Assessment Document or Analysis | 2020-02-06T05:00:00Z | 2020 | 2 | 2020-02-14T16:29:24Z | 0 | 0 | 0900006484332e7d | |||
| FWS-HQ-MB-2018-0090-0001 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Migratory Bird Permits: Take of Migratory Birds; Environmental Impact Statement | Proposed Rule | 2020-02-03T05:00:00Z | 2020 | 2 | 2020-02-03T05:00:00Z | 2020-03-20T03:59:59Z | 2020-03-21T01:03:11Z | 2020-01770 | 0 | 0 | 0900006484320787 | |
| FWS-HQ-MB-2018-0090-0002 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | Take of Migratory Birds | Proposed Rule | 2020-02-03T05:00:00Z | 2020 | 2 | 2020-02-03T05:00:00Z | 2020-03-20T03:59:59Z | 2021-02-09T02:00:48Z | 2020-01771 | 0 | 0 | 09000064843207cb | |
| FWS-HQ-MB-2018-0090-0003 | FWS | Migratory Bird Permits; Regulations Governing Take of Migratory Birds FWS-HQ-MB-2018-0090 | US Department of the Interior, Office of the Solicitor, Memorandum M-37050, The Migratory Bird Treaty Act Does Not Prohibit Incidental Take | Supporting & Related Material | Memorandum | 2020-02-03T05:00:00Z | 2020 | 2 | 2020-02-03T13:58:02Z | 0 | 0 | 090000648431833a |
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;