documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2020-0123" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2020-0123-0033 | USCG | None USCG-2020-0123 | Safety Management Systems for Domestic Passenger Vessels | Proposed Rule | 2021-04-01T04:00:00Z | 2021 | 4 | 2021-04-11T17:19:13Z | 2021-06145 | 0 | 0 | 0900006484a930de | |||
| USCG-2020-0123-0015 | USCG | None USCG-2020-0123 | Safety Management Systems for Domestic Passenger Vessels | Proposed Rule | 2021-03-01T05:00:00Z | 2021 | 3 | 2021-03-01T16:38:10Z | 2021-04011 | 0 | 0 | 0900006484a57369 | |||
| USCG-2020-0123-0001 | USCG | None USCG-2020-0123 | Safety Management Systems for Domestic Passenger Vessels | Proposed Rule | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T05:00:00Z | 2021-06-02T03:59:59Z | 2022-06-15T01:00:25Z | 2021-01058 | 0 | 0 | 09000064849f4513 | |
| USCG-2020-0123-0005 | USCG | None USCG-2020-0123 | 4_NTSB_Recommendations_M05_04_06 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:02:12Z | 0 | 0 | 09000064849f4dca | ||||
| USCG-2020-0123-0006 | USCG | None USCG-2020-0123 | 5_NTSB_Safety_Recommendations_M-12-001-003 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:03:54Z | 0 | 0 | 09000064849f4dcb | ||||
| USCG-2020-0123-0004 | USCG | None USCG-2020-0123 | 3_5PC_Letter_FlagshipPVA-12JUN2017 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:01:23Z | 0 | 0 | 09000064849f4dc9 | ||||
| USCG-2020-0123-0003 | USCG | None USCG-2020-0123 | 2_USCG-PVA Annual Report for 2017-2019 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:00:57Z | 0 | 0 | 09000064849f4dc8 | ||||
| USCG-2020-0123-0007 | USCG | None USCG-2020-0123 | 6_IMO Resolution A 741 18 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:05:43Z | 0 | 0 | 09000064849f4dcd | ||||
| USCG-2020-0123-0002 | USCG | None USCG-2020-0123 | 1_Safety Management Systems Vol73_No1_Spring2016 | Supporting & Related Material | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T18:00:44Z | 0 | 0 | 09000064849f4dc7 |
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;