documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FWS-HQ-MB-2020-0023" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2020-0023-1937 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Permits for Incidental Take of Eagles and Eagle Nests | Proposed Rule | 2022-11-28T05:00:00Z | 2022 | 11 | 2022-11-28T05:00:00Z | 2022-12-30T04:59:59Z | 2022-12-31T02:01:26Z | 2022-25837 | 0 | 0 | 090000648550468e | |
| FWS-HQ-MB-2020-0023-1906 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Proposed Rule Example Eagle Nest Take Permit Conditions | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2024-02-12T21:00:37Z | 0 | 0 | 0900006485379879 | ||||
| FWS-HQ-MB-2020-0023-1903 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Permits for Incidental Take of Eagles and Eagle Nests | Proposed Rule | 2022-09-30T04:00:00Z | 2022 | 9 | 2022-09-30T04:00:00Z | 2022-11-30T04:59:59Z | 2022-12-01T02:01:22Z | 2022-21025 | 0 | 0 | 0900006485389d5b | |
| FWS-HQ-MB-2020-0023-1909 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Proposed Rule Map of Eagle Incidental Take Permit Eligibility | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2024-02-12T21:01:07Z | 0 | 0 | 0900006485384385 | ||||
| FWS-HQ-MB-2020-0023-1905 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Proposed Rule Example Eagle Wind Permit Conditions | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2024-02-12T21:00:26Z | 0 | 0 | 0900006485379878 | ||||
| FWS-HQ-MB-2020-0023-1907 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Proposed Rule Example Eagle Nest Disturbance Permit Conditions | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2024-02-12T21:00:51Z | 0 | 0 | 090000648537987a | ||||
| FWS-HQ-MB-2020-0023-1904 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Proposed Rule Example Eagle Power Line Permit Conditions | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2024-02-12T21:00:14Z | 0 | 0 | 0900006485379877 | ||||
| FWS-HQ-MB-2020-0023-1908 | FWS | Eagle Permits; Incidental Take FWS-HQ-MB-2020-0023 | Draft Environmental Assessment - Eagle Incidental Take Permit | Supporting & Related Material | 2022-09-30T04:00:00Z | 2022 | 9 | 2022-09-30T12:33:39Z | 0 | 0 | 090000648537987b |
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;