documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2017-0448" 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)
document_type 3
agency_id 1
- USCG 7
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2017-0448-0647 | USCG | None USCG-2017-0448 | DHS National Environmental Policy Act Record of Environmental Consideration for Categorically Excluded Actions | Supporting & Related Material | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T19:17:43Z | 0 | 0 | 0900006484635ad9 | ||||
| USCG-2017-0448-0646 | USCG | None USCG-2017-0448 | Security Zone; Potomac River, Montgomery County, MD | Rule | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T14:37:19Z | 2020-10152 | 0 | 0 | 09000064846304fd | ||
| USCG-2017-0448-0638 | USCG | None USCG-2017-0448 | Security Zone; Potomac River, Montgomery County, MD | Rule | Interim Final Rule | 2019-03-21T04:00:00Z | 2019 | 3 | 2019-03-21T04:00:00Z | 2019-06-20T03:59:59Z | 2019-06-20T01:03:04Z | 2019-05407 | 0 | 0 | 0900006483b0d263 |
| USCG-2017-0448-0639 | USCG | None USCG-2017-0448 | DHS National Environmental Policy Act Memorandum For Record for Categorically Excluded Actions that do not require a REC | Supporting & Related Material | 2019-03-21T04:00:00Z | 2019 | 3 | 2019-03-21T19:21:38Z | 0 | 0 | 0900006483b127ed | ||||
| USCG-2017-0448-0293 | USCG | None USCG-2017-0448 | Congressional Inquiry and USCG Response | Other | Agency Response | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T04:00:00Z | 2017-07-25T12:37:53Z | 0 | 0 | 0900006482962b21 | ||
| USCG-2017-0448-0001 | USCG | None USCG-2017-0448 | Security Zone; Potomac River, Montgomery County, MD | Rule | Notice of Interim Rule | 2017-07-10T04:00:00Z | 2017 | 7 | 2017-07-10T04:00:00Z | 2017-08-10T03:59:59Z | 2017-08-10T13:06:07Z | 2017-14395 | 0 | 0 | 09000064828b62ee |
| USCG-2017-0448-0002 | USCG | None USCG-2017-0448 | COAST GUARD NATIONAL ENVIRONMENT POLICY ACT (NEPA) RECORD OF ENVIRONMENTAL CONSIDERATION (REC) FOR CATEGORICALLY EXCLUDED ACTIONS | Supporting & Related Material | 2017-07-10T04:00:00Z | 2017 | 7 | 2017-07-12T15:31:43Z | 0 | 0 | 09000064828d3ab8 |
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;