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

13 rows where docket_id = "PHMSA-2024-0043" sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

document_type 3

  • Other 10
  • Notice 2
  • Supporting & Related Material 1

posted_year 1

  • 2024 13

agency_id 1

  • PHMSA 13
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
PHMSA-2024-0043-0042 PHMSA None PHMSA-2024-0043 HF and Keystone - PHMSA Risk Modeling Workshop Supporting & Related Material Meeting Materials 2024-11-15T05:00:00Z 2024 11     2024-11-15T15:46:12Z   0 0 0900006486813fd4
PHMSA-2024-0043-0041 PHMSA None PHMSA-2024-0043 PHMSA (Massoud Tahamtani) -Risk Modeling Conclusions 10242024-Final - Powerpoint Presentation Other Summary (SUM) 2024-11-07T05:00:00Z 2024 11 2024-11-07T05:00:00Z   2024-11-07T11:52:35Z   0 0 09000064867feb74
PHMSA-2024-0043-0040 PHMSA None PHMSA-2024-0043 2024 Risk Modeling Public Workshop Agenda 22 Oct 24 Final Other Supplement (SUP) 2024-11-04T05:00:00Z 2024 11 2024-11-04T05:00:00Z   2024-11-04T12:29:14Z   0 0 09000064867f4d88
PHMSA-2024-0043-0034 PHMSA None PHMSA-2024-0043 PLR - Machine Learned based Risk Modeling Final Other Supplement (SUP) 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:30Z   0 0 09000064867f40f9
PHMSA-2024-0043-0036 PHMSA None PHMSA-2024-0043 PHMSA (Alan Mayberry)- Welcoming Remarks Other Supplemental Comment 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:31Z   0 0 09000064867f4d3a
PHMSA-2024-0043-0035 PHMSA None PHMSA-2024-0043 Dynamic Risk- Quantitative Risk Assessment (QRA) Other Supplement (SUP) 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:30Z   0 0 09000064867f4d34
PHMSA-2024-0043-0033 PHMSA None PHMSA-2024-0043 Comment from PHMSA Other Additional Information 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T17:45:01Z   0 0 09000064867f504c
PHMSA-2024-0043-0038 PHMSA None PHMSA-2024-0043 Risk Modeling Workshop-Govt Panel Discussion 23 Oct 24 Other Supplement (SUP) 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:32Z   0 0 09000064867f4d85
PHMSA-2024-0043-0039 PHMSA None PHMSA-2024-0043 2024 Risk Modeling Public Workshop Agenda 22 Oct 24 - Final Other Supplement (SUP) 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:32Z   0 0 09000064867f4ff8
PHMSA-2024-0043-0037 PHMSA None PHMSA-2024-0043 Overview of Risk Modeling Development Other Supplement (SUP) 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T18:08:31Z   0 0 09000064867f4d58
PHMSA-2024-0043-0032 PHMSA None PHMSA-2024-0043 Comments from PHMSA Other Additional Information 2024-11-01T04:00:00Z 2024 11 2024-11-01T04:00:00Z   2024-11-01T17:44:50Z   0 0 09000064867f50a8
PHMSA-2024-0043-0029 PHMSA None PHMSA-2024-0043 Hearings,Meetings, Proceedings, etc.: Pipeline Safety: 2024 Risk Modeling Public Workshop Notice Request for Comments 2024-09-24T04:00:00Z 2024 9 2024-09-24T04:00:00Z 2024-10-12T03:59:59Z 2024-11-12T22:47:31Z 2024-21794 1 0 0900006486777a2c
PHMSA-2024-0043-0001 PHMSA None PHMSA-2024-0043 Hearings, Meetings, Proceedings, etc.: Pipeline Safety: 2024 Risk Modeling Public Workshop Notice Request for Comments 2024-07-25T04:00:00Z 2024 7 2024-07-25T04:00:00Z 2024-10-10T03:59:59Z 2024-12-12T02:01:02Z 2024-16414 1 0 0900006486605520

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.535ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API