home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

15 rows where docket_id = "USCG-2022-0370" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

document_type 3

  • Supporting & Related Material 13
  • Proposed Rule 1
  • Rule 1

posted_year 2

  • 2022 13
  • 2023 2

agency_id 1

  • USCG 15
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-0370-0021 USCG None USCG-2022-0370 REC_DSS_USCG_2023_16392 Supporting & Related Material   2023-02-28T05:00:00Z 2023 2     2023-02-28T12:10:11Z   0 0 0900006485723032
USCG-2022-0370-0020 USCG None USCG-2022-0370 Great Lakes Pilotage Rates—2023 Annual Ratemaking and Review of Methodology Rule   2023-02-27T05:00:00Z 2023 2     2023-02-27T14:22:58Z 2023-03212 0 0 090000648571c13a
USCG-2022-0370-0019 USCG None USCG-2022-0370 SeaPro Sept 27 2022 Error Conversation Memorandum for the Record Supporting & Related Material   2022-10-12T04:00:00Z 2022 10     2022-10-12T18:30:19Z   0 0 09000064853f8bef
USCG-2022-0370-0018 USCG None USCG-2022-0370 GLPAC Sept 13 2022 Meeting Memorandum for the Record v2 Supporting & Related Material   2022-10-03T04:00:00Z 2022 10     2022-10-03T17:25:02Z   0 0 09000064853a0587
USCG-2022-0370-0010 USCG None USCG-2022-0370 Presentation to GLPAC on Informal Rulemaking and Ex Parte Communications Supporting & Related Material   2022-09-21T04:00:00Z 2022 9     2022-09-21T18:40:13Z   0 0 090000648534763f
USCG-2022-0370-0011 USCG None USCG-2022-0370 GLPAC Sept 13 2022 Meeting Memorandum for the Record_USCG Supporting & Related Material   2022-09-21T00:00:00Z 2022 9     2022-10-03T17:19:26Z   0 1 0900006485347830
USCG-2022-0370-0002 USCG None USCG-2022-0370 District 1 2020 Expense Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:21:05Z   0 0 090000648528f9d3
USCG-2022-0370-0009 USCG None USCG-2022-0370 GLP Advisory Committee Sept 1 2021 Meeting Minutes Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:39:36Z   0 0 090000648528fb2b
USCG-2022-0370-0007 USCG None USCG-2022-0370 District 3 2020 Revenue Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:34:01Z   0 0 090000648528fb27
USCG-2022-0370-0005 USCG None USCG-2022-0370 District 2 2020 Revenue Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:27:43Z   0 0 090000648528fb25
USCG-2022-0370-0003 USCG None USCG-2022-0370 District 1 2020 Revenue Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:23:12Z   0 0 090000648528fb23
USCG-2022-0370-0001 USCG None USCG-2022-0370 Great Lakes Pilotage Rates—2023 Annual Review and Revisions to Methodology Proposed Rule   2022-08-30T04:00:00Z 2022 8 2022-08-30T04:00:00Z 2022-09-30T03:59:59Z 2022-09-30T01:00:27Z 2022-18690 0 0 090000648528e9c0
USCG-2022-0370-0006 USCG None USCG-2022-0370 District 3 2020 Expense Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:30:57Z   0 0 090000648528fb26
USCG-2022-0370-0004 USCG None USCG-2022-0370 District 2 2020 Expense Report - Final2021 Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:25:15Z   0 0 090000648528fb24
USCG-2022-0370-0008 USCG None USCG-2022-0370 Draft Record of Environmental Consideration 2023_GLP Rates Supporting & Related Material   2022-08-30T04:00:00Z 2022 8     2022-08-30T14:36:25Z   0 0 090000648528fb2a

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 7.343ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API