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

11 rows where agency_id = "PHMSA", document_type = "Notice" and posted_year = 2001 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

posted_year 1

  • 2001 · 11 ✖

document_type 1

  • Notice · 11 ✖

agency_id 1

  • PHMSA · 11 ✖
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-RSPA-1999-6223-0004 PHMSA None PHMSA-RSPA-1999-6223 U.S. DOT/RSPA - Notice of Communication in Safety Requirements Prohibiting Transportation of Flammable Liquids in External Product Piping on Cargo Tanks Notice Notice 2001-08-22T04:00:00Z 2001 8 2001-08-22T04:00:00Z 2001-08-23T03:59:59Z 2024-11-08T03:58:53Z   1 0 09000064802a7fd9
PHMSA-RSPA-2004-17025-0002 PHMSA None PHMSA-RSPA-2004-17025 U.S. DOT/RSPA - Notice of Probable Violation: Steigerwalt and Associates Notice Notice 2001-07-02T04:00:00Z 2001 7 2001-07-02T04:00:00Z 2004-02-11T04:59:59Z 2024-11-07T18:25:57Z   1 0 090000648031aeae
PHMSA-RSPA-2001-9381-0002 PHMSA None PHMSA-RSPA-2001-9381 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2024-11-07T21:48:27Z   1 0 09000064803828a4
PHMSA-RSPA-2001-8608-0009 PHMSA None PHMSA-RSPA-2001-8608 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2024-11-07T21:48:42Z   1 0 0900006480383852
PHMSA-RSPA-1997-3231-0015 PHMSA None PHMSA-RSPA-1997-3231 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2008-01-08T20:21:38Z   0 0 090000648031ec76
PHMSA-RSPA-2000-8417-0001 PHMSA None PHMSA-RSPA-2000-8417 U.S. DOT/RSPA - Notice of Proposed Rulemaking Notice Notice of Proposed Rulemaking (NPRM) 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2008-01-08T20:26:23Z   0 0 0900006480343f7e
PHMSA-RSPA-1998-3941-0021 PHMSA None PHMSA-RSPA-1998-3941 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2024-11-12T04:04:56Z   1 0 0900006480382515
PHMSA-RSPA-2001-9474-0002 PHMSA None PHMSA-RSPA-2001-9474 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2008-01-08T12:42:37Z   0 0 09000064803828d5
PHMSA-RSPA-2001-9475-0002 PHMSA None PHMSA-RSPA-2001-9475 U. S. DOT/RSPA - List of Applications for Modification of Exemptions Notice Notice 2001-04-30T04:00:00Z 2001 4 2001-04-30T04:00:00Z 2001-05-02T03:59:59Z 2024-11-12T04:01:34Z   1 0 09000064803828fa
PHMSA-RSPA-2000-8026-0011 PHMSA None PHMSA-RSPA-2000-8026 Notice Extending Period for Public Comment Notice Notice 2001-02-02T05:00:00Z 2001 2 2001-02-02T05:00:00Z 2001-02-06T04:59:59Z 2024-11-12T03:55:14Z   1 0 0900006480342409
PHMSA-RSPA-2001-8587-0001 PHMSA None PHMSA-RSPA-2001-8587 U.S. DOT/RSPA - Notice; Request for Comments - Reauthorization of the Federal Hazardous Materials Transportation Law Notice Notice 2001-01-10T05:00:00Z 2001 1 2001-01-10T05:00:00Z 2001-01-11T04:59:59Z 2008-01-08T20:19:47Z   0 0 0900006480344d53

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