documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "PHMSA" and docket_id = "PHMSA-RSPA-2002-11989" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Rule 4
- Supporting & Related Material 3
- Other 2
- Notice 1
agency_id 1
- PHMSA · 10 ✖
| 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-2002-11989-0029 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/PHMSA - Final Regulatory Evaluation | Supporting & Related Material | Assessment Document or Analysis | 2007-08-24T04:00:00Z | 2007 | 8 | 2024-11-07T17:07:32Z | 0 | 0 | 09000064802bf9b3 | |||
| PHMSA-RSPA-2002-11989-0030 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/PHMSA - Final Regulatory Flexibility Analysis | Supporting & Related Material | Assessment Document or Analysis | 2007-08-24T04:00:00Z | 2007 | 8 | 2024-11-07T17:07:32Z | 0 | 0 | 09000064802bf9b7 | |||
| PHMSA-RSPA-2002-11989-0028-0001 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/PHMSA - Final Rule | Rule | Federal Register Publication | 2007-08-09T04:00:00Z | 2007 | 8 | 2007-08-09T04:00:00Z | 2007-08-10T03:59:59Z | 2024-11-07T17:07:12Z | 1 | 0 | 09000064802bf9ae | |
| PHMSA-RSPA-2002-11989-0028-0002 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/PHMSA - Final Rule | Rule | Federal Register Publication | 2007-08-09T04:00:00Z | 2007 | 8 | 2007-08-09T04:00:00Z | 2007-08-10T03:59:59Z | 2024-11-07T17:07:32Z | 1 | 0 | 09000064802bf9b1 | |
| PHMSA-RSPA-2002-11989-0021 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/RSPA - Initial Regulatory Flexibility Analysis | Rule | Federal Register Publication | 2005-06-15T04:00:00Z | 2005 | 6 | 2005-06-15T04:00:00Z | 2005-06-16T03:59:59Z | 2024-11-07T17:07:12Z | 1 | 0 | 09000064802bf974 | |
| PHMSA-RSPA-2002-11989-0020 | PHMSA | None PHMSA-RSPA-2002-11989 | Valance Technology, Inc. - Request for Meeting | Other | Request | 2003-06-16T04:00:00Z | 2003 | 6 | 2003-06-16T04:00:00Z | 2003-06-17T03:59:59Z | 2024-11-07T17:06:51Z | 1 | 0 | 09000064802bf971 | |
| PHMSA-RSPA-2002-11989-0018 | PHMSA | None PHMSA-RSPA-2002-11989 | Fedco Electronics, Inc. - Response to Request to Clarify Position on Lithium Battery Proposed Rule | Other | Response(s) | 2002-12-05T05:00:00Z | 2002 | 12 | 2002-12-05T05:00:00Z | 2002-12-06T04:59:59Z | 2024-11-07T17:06:51Z | 1 | 0 | 09000064802bf968 | |
| PHMSA-RSPA-2002-11989-0017 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/RSPA - Note to File | Notice | Notice | 2002-11-27T05:00:00Z | 2002 | 11 | 2002-11-27T05:00:00Z | 2002-11-28T04:59:59Z | 2024-11-07T17:06:50Z | 1 | 0 | 09000064802bf965 | |
| PHMSA-RSPA-2002-11989-0001 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/RSPA - Regulatory Evaluation | Supporting & Related Material | Analysis | 2002-04-02T05:00:00Z | 2002 | 4 | 2024-11-07T17:06:50Z | 0 | 0 | 09000064802bf941 | |||
| PHMSA-RSPA-2002-11989-0002 | PHMSA | None PHMSA-RSPA-2002-11989 | U.S. DOT/RSPA - Notice of Proposed Rulemaking | Rule | Federal Register Publication | 2002-04-02T05:00:00Z | 2002 | 4 | 2002-04-02T05:00:00Z | 2002-04-03T04:59:59Z | 2024-11-07T17:06:51Z | 1 | 0 | 09000064802bf96f |
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;