documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "USCG-2021-0183" 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 2
agency_id 1
- USCG 10
| 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-2021-0183-0512 | USCG | None USCG-2021-0183 | Final Programmatic Environmental Impact Statement for the Expansion and Modernization of Base Seattle | Notice | 2024-12-11T05:00:00Z | 2024 | 12 | 2024-12-11T13:50:03Z | 2024-29048 | 0 | 0 | 0900006486861cb2 | |||
| USCG-2021-0183-0511 | USCG | None USCG-2021-0183 | Final Programmatic Environmental Impact Statement for the Expansion and Modernization of Base Seattle | Notice | 2024-11-15T05:00:00Z | 2024 | 11 | 2024-11-15T13:26:28Z | 2024-26393 | 0 | 0 | 0900006486817955 | |||
| USCG-2021-0183-0510 | USCG | None USCG-2021-0183 | Base Seattle Modernization Final PEIS_Volume 2_Appendices_November_2024 | Supporting & Related Material | 2024-11-14T05:00:00Z | 2024 | 11 | 2024-11-14T20:15:10Z | 0 | 0 | 090000648681693e | ||||
| USCG-2021-0183-0509 | USCG | None USCG-2021-0183 | Base Seattle Modernization Final PEIS_Volume 1_November_2024 | Supporting & Related Material | 2024-11-14T05:00:00Z | 2024 | 11 | 2024-11-14T20:14:29Z | 0 | 0 | 09000064868164bf | ||||
| USCG-2021-0183-0422 | USCG | None USCG-2021-0183 | Draft Programmatic Environmental Impact Statement; Expansion and Modernization of Base Seattle | Notice | 2022-11-28T05:00:00Z | 2022 | 11 | 2022-11-28T14:46:19Z | 2022-25825 | 0 | 0 | 090000648550474a | |||
| USCG-2021-0183-0029 | USCG | None USCG-2021-0183 | Draft Programmatic Environmental Impact Statement Expansion and Modernization of Base Seattle | Notice | 2022-10-11T04:00:00Z | 2022 | 10 | 2022-10-11T04:00:00Z | 2022-12-17T04:59:59Z | 2022-12-18T02:00:53Z | 2022-22075 | 0 | 0 | 09000064853eb5eb | |
| USCG-2021-0183-0027 | USCG | None USCG-2021-0183 | Base Seattle Modernization Draft PEIS_Volume 2_Appendices_OCT2022 | Supporting & Related Material | 2022-10-05T04:00:00Z | 2022 | 10 | 2022-10-05T17:20:02Z | 0 | 0 | 09000064853bc407 | ||||
| USCG-2021-0183-0028 | USCG | None USCG-2021-0183 | Seattle Signed NOA | Supporting & Related Material | 2022-10-05T04:00:00Z | 2022 | 10 | 2022-10-05T17:22:09Z | 0 | 0 | 09000064853bc408 | ||||
| USCG-2021-0183-0026 | USCG | None USCG-2021-0183 | Base Seattle Modernization Draft PEIS_Volume 1_OCT2022 | Supporting & Related Material | 2022-10-04T04:00:00Z | 2022 | 10 | 2022-10-04T19:03:26Z | 0 | 0 | 09000064853afa5d | ||||
| USCG-2021-0183-0001 | USCG | None USCG-2021-0183 | Modernization of Coast Guard Base Seattle; Preparation of Programmatic Environmental Impact Statement | Notice | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T04:00:00Z | 2021-06-22T03:59:59Z | 2021-06-23T01:00:53Z | 2021-09523 | 0 | 0 | 0900006484ad8605 |
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;