documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "USCG-2023-0438" 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-2023-0438-0011 | USCG | None USCG-2023-0438 | DSS-USCG-2023-18379_REC | Supporting & Related Material | 2024-09-19T04:00:00Z | 2024 | 9 | 2024-09-19T12:16:09Z | 0 | 0 | 090000648674c7d4 | ||||
| USCG-2023-0438-0010 | USCG | None USCG-2023-0438 | Great Lakes Pilotage Rates—2024 Annual Review | Rule | 2024-02-09T05:00:00Z | 2024 | 2 | 2024-02-09T15:18:08Z | 2024-02410 | 0 | 0 | 09000064863f7dca | |||
| USCG-2023-0438-0008 | USCG | None USCG-2023-0438 | MINUTES - 07SEP2023 GLPAC MEETING | Supporting & Related Material | 2023-10-11T04:00:00Z | 2023 | 10 | 2023-10-11T14:47:50Z | 0 | 0 | 09000064860a802c | ||||
| USCG-2023-0438-0009 | USCG | None USCG-2023-0438 | TRANSCRIPT - 07SEP2023 GLPAC MEETING | Supporting & Related Material | 2023-10-11T04:00:00Z | 2023 | 10 | 2023-10-11T14:48:47Z | 0 | 0 | 09000064860a8093 | ||||
| USCG-2023-0438-0007 | USCG | None USCG-2023-0438 | Scan_0822 | Supporting & Related Material | 2023-09-19T04:00:00Z | 2023 | 9 | 2023-09-19T18:19:58Z | 0 | 0 | 0900006485fd2ef2 | ||||
| USCG-2023-0438-0003 | USCG | None USCG-2023-0438 | P. LaMarre 2024 Rate Comment Letter | Supporting & Related Material | 2023-09-14T04:00:00Z | 2023 | 9 | 2023-09-14T16:24:25Z | 0 | 0 | 0900006485fa5bfa | ||||
| USCG-2023-0438-0002 | USCG | None USCG-2023-0438 | USCG-2023-0438_GLP Rates 2024_REC | Supporting & Related Material | 2023-08-28T04:00:00Z | 2023 | 8 | 2023-08-28T14:14:53Z | 0 | 0 | 0900006485f01e15 | ||||
| USCG-2023-0438-0001 | USCG | None USCG-2023-0438 | Great Lakes Pilotage Rates—2024 Annual Review | Proposed Rule | 2023-08-16T04:00:00Z | 2023 | 8 | 2023-08-16T04:00:00Z | 2023-09-16T03:59:59Z | 2023-09-16T01:03:40Z | 2023-17474 | 0 | 0 | 0900006485e54474 |
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;