documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "USCG-2018-1058" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
- Proposed Rule 4
- Notice 1
agency_id 1
- USCG 5
| 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-2018-1058-0040 | USCG | None USCG-2018-1058 | Port Access Route Study: Alaskan Arctic Coast; Reopening of Comment Period | Proposed Rule | 2021-10-27T04:00:00Z | 2021 | 10 | 2021-10-29T14:41:08Z | 2021-23389 | 0 | 0 | 0900006484dfa64f | |||
| USCG-2018-1058-0031 | USCG | None USCG-2018-1058 | Port Access Route Study: Alaskan Arctic Coast; Reopening of Comment Period | Proposed Rule | 2020-07-06T04:00:00Z | 2020 | 7 | 2020-07-06T04:00:00Z | 2021-10-01T03:59:59Z | 2021-10-27T15:40:30Z | 2020-14270 | 0 | 0 | 0900006484727caa | |
| USCG-2018-1058-0022 | USCG | None USCG-2018-1058 | Extension of Comment Period for the Port Access Route Study: Alaskan Arctic Coast | Proposed Rule | 2020-01-13T05:00:00Z | 2020 | 1 | 2020-01-13T05:00:00Z | 2020-07-01T03:59:59Z | 2020-07-02T01:01:07Z | 2020-00279 | 0 | 0 | 09000064842917c5 | |
| USCG-2018-1058-0012 | USCG | None USCG-2018-1058 | Extension of Comment Period for the Port Access Route Study: Alaskan Arctic Coast | Proposed Rule | 2019-09-04T04:00:00Z | 2019 | 9 | 2019-09-04T04:00:00Z | 2020-01-31T04:59:59Z | 2021-10-27T15:39:13Z | 2019-19080 | 0 | 0 | 0900006483ee7751 | |
| USCG-2018-1058-0001 | USCG | None USCG-2018-1058 | Port Access Route Study: Alaskan Arctic Coast | Notice | Request for Comments | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2022-04-01T03:59:59Z | 2022-04-02T01:00:05Z | 2018-27604 | 0 | 0 | 09000064839be27a |
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;