documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2022-0802" 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 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-2022-0802-0105 | USCG | None USCG-2022-0802 | Appendix A Wages Across Vessel Types 8.16.24 | Supporting & Related Material | 2025-01-17T05:00:00Z | 2025 | 1 | 2025-01-17T16:17:50Z | 0 | 0 | 09000064868cc7a0 | ||||
| USCG-2022-0802-0106 | USCG | None USCG-2022-0802 | 2024 Cyber Rule_REC_Signed_CCG Signed | Supporting & Related Material | 2025-01-17T05:00:00Z | 2025 | 1 | 2025-02-23T18:31:35Z | 0 | 0 | 09000064868cc7a1 | ||||
| USCG-2022-0802-0107 | USCG | None USCG-2022-0802 | Cybersecurity in the Marine Transportation System | Rule | 2025-01-17T05:00:00Z | 2025 | 1 | 2025-01-17T05:00:00Z | 2025-03-19T03:59:59Z | 2025-03-20T01:00:18Z | 2025-00708 | 0 | 0 | 09000064868e2ef8 | |
| USCG-2022-0802-0029 | USCG | None USCG-2022-0802 | Cybersecurity in the Marine Transportation System | Proposed Rule | 2024-04-09T04:00:00Z | 2024 | 4 | 2024-04-09T12:25:31Z | 2024-07512 | 0 | 0 | 09000064864c29d2 | |||
| USCG-2022-0802-0005 | USCG | None USCG-2022-0802 | facilities_hoovers_employee_counts | Supporting & Related Material | 2024-02-23T05:00:00Z | 2024 | 2 | 2024-02-23T17:51:38Z | 0 | 0 | 0900006486429e45 | ||||
| USCG-2022-0802-0006 | USCG | None USCG-2022-0802 | USCG-2022-0802_Cybersecurity on the MTS_Draft REC (1) | Supporting & Related Material | 2024-02-23T05:00:00Z | 2024 | 2 | 2024-02-23T17:53:25Z | 0 | 0 | 0900006486429e46 | ||||
| USCG-2022-0802-0004 | USCG | None USCG-2022-0802 | 2022-Cyber-Security-Survey | Supporting & Related Material | 2024-02-23T05:00:00Z | 2024 | 2 | 2024-02-23T17:49:49Z | 0 | 0 | 0900006486429e44 | ||||
| USCG-2022-0802-0001 | USCG | None USCG-2022-0802 | Cybersecurity in the Marine Transportation System | Proposed Rule | 2024-02-22T05:00:00Z | 2024 | 2 | 2024-02-22T05:00:00Z | 2024-05-23T03:59:59Z | 2024-05-24T01:00:45Z | 2024-03075 | 0 | 0 | 0900006486424d34 |
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;