documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2016-0963" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 8
| 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-2016-0963-0326 | USCG | None USCG-2016-0963 | Drawbridge Operation Regulation; Tchefuncta River | Rule | 2022-03-08T05:00:00Z | 2022 | 3 | 2022-03-08T14:44:28Z | 2022-04860 | 0 | 0 | 0900006484fbfeff | |||
| USCG-2016-0963-0307 | USCG | None USCG-2016-0963 | Drawbridge Operation Regulations; Tchefuncta River | Proposed Rule | 2021-09-01T04:00:00Z | 2021 | 9 | 2021-09-01T04:00:00Z | 2021-11-02T03:59:59Z | 2021-10-31T01:00:16Z | 2021-18640 | 0 | 0 | 0900006484d12ffa | |
| USCG-2016-0963-0306 | USCG | None USCG-2016-0963 | Drawbridge Operation Regulations; Tchefuncta River, Madisonville, LA | Rule | Final Rule | 2018-10-25T04:00:00Z | 2018 | 10 | 2018-10-26T16:16:29Z | 2018-23367 | 0 | 0 | 09000064838491e1 | ||
| USCG-2016-0963-0005 | USCG | None USCG-2016-0963 | USCG LTR DATED DEC 12 2017 | Supporting & Related Material | 2018-06-14T04:00:00Z | 2018 | 6 | 2018-06-14T17:52:56Z | 0 | 0 | 0900006483415a25 | ||||
| USCG-2016-0963-0003 | USCG | None USCG-2016-0963 | Drawbridge Operations: Tchefuncta River, Madisonville, LA | Proposed Rule | Supplemental Notice of Proposed Rulemaking (SNPRM) | 2018-06-14T04:00:00Z | 2018 | 6 | 2018-06-14T04:00:00Z | 2018-07-17T03:59:59Z | 2018-07-17T01:02:46Z | 2018-12742 | 0 | 0 | 090000648340f8b8 |
| USCG-2016-0963-0004 | USCG | None USCG-2016-0963 | LADOTD 05.26.18 | Supporting & Related Material | 2018-06-14T04:00:00Z | 2018 | 6 | 2018-06-14T17:52:50Z | 0 | 0 | 09000064834156c2 | ||||
| USCG-2016-0963-0001 | USCG | None USCG-2016-0963 | Drawbridge Operation Regulations; Tchefuncta River, Madisonville, LA | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2017-01-19T04:59:59Z | 2016-11-04T14:08:24Z | 2016-26654 | 0 | 0 | 0900006482371cff |
| USCG-2016-0963-0002 | USCG | None USCG-2016-0963 | Drawbridge Operation Regulations; Tchefuncta River, Madisonville, LA | Rule | Temporary Rule | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2017-01-19T04:59:59Z | 2016-11-04T14:22:17Z | 2016-26655 | 0 | 0 | 0900006482371d07 |
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;