documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-RSPA-2001-10568" 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, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| 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-2001-10568-0024 | PHMSA | None PHMSA-RSPA-2001-10568 | U.S. DOT/RSPA - Final Rule; Response to Appeals | Rule | Federal Register Publication | 2002-11-01T05:00:00Z | 2002 | 11 | 2002-11-01T05:00:00Z | 2002-11-02T04:59:59Z | 2024-11-07T17:50:23Z | 1 | 0 | 090000648030229b | |
| PHMSA-RSPA-2001-10568-0023 | PHMSA | None PHMSA-RSPA-2001-10568 | Truckload Carriers Association - Petition for Reconsideration of the Final Rule | Other | Petition for Reconsideration | 2002-08-27T04:00:00Z | 2002 | 8 | 2002-08-27T04:00:00Z | 2002-08-28T03:59:59Z | 2024-11-07T17:49:58Z | 1 | 0 | 090000648030229a | |
| PHMSA-RSPA-2001-10568-0022 | PHMSA | None PHMSA-RSPA-2001-10568 | National Propane Gas Association (NPGA) - Appeal/Petition for reconsideration of the final rule | Other | Appeal | 2002-08-23T04:00:00Z | 2002 | 8 | 2002-08-23T04:00:00Z | 2002-08-24T03:59:59Z | 2024-11-07T17:49:58Z | 1 | 0 | 0900006480302299 | |
| PHMSA-RSPA-2001-10568-0021-0001 | PHMSA | None PHMSA-RSPA-2001-10568 | International Vessel Operators Hazardous Materials Association, Inc., (VOHMA) - Petition for reconsideration of the final rule. | Other | Petition for Reconsideration | 2002-08-20T04:00:00Z | 2002 | 8 | 2002-08-20T04:00:00Z | 2002-08-21T03:59:59Z | 2024-11-07T17:49:58Z | 1 | 0 | 0900006480302297 | |
| PHMSA-RSPA-2001-10568-0021-0002 | PHMSA | None PHMSA-RSPA-2001-10568 | International Vessel Operators Hazardous Materials Association, Inc., (VOHMA) - Petition for reconsideration of the final rule. | Other | Petition for Reconsideration | 2002-08-20T04:00:00Z | 2002 | 8 | 2002-08-20T04:00:00Z | 2002-08-21T03:59:59Z | 2024-11-07T17:49:58Z | 1 | 0 | 0900006480302298 | |
| PHMSA-RSPA-2001-10568-0019 | PHMSA | None PHMSA-RSPA-2001-10568 | American Trucking Associations, Inc. (ATA) - Appeal of Final Rule - Hazardous Materials; Retention of Shipping Papers | Other | Appeal | 2002-08-12T04:00:00Z | 2002 | 8 | 2002-08-12T04:00:00Z | 2002-08-14T03:59:59Z | 2024-11-07T17:49:57Z | 1 | 0 | 0900006480302294 | |
| PHMSA-RSPA-2001-10568-0018 | PHMSA | None PHMSA-RSPA-2001-10568 | U.S. DOT/RSPA - Final Rule | Rule | Federal Register Publication | 2002-07-12T04:00:00Z | 2002 | 7 | 2002-07-12T04:00:00Z | 2002-07-13T03:59:59Z | 2024-11-07T17:49:57Z | 1 | 0 | 0900006480302293 | |
| PHMSA-RSPA-2001-10568-0001 | PHMSA | None PHMSA-RSPA-2001-10568 | U.S. DOT/RSPA - Notice of Proposed Rulemaking | Rule | Federal Register Publication | 2001-09-09T04:00:00Z | 2001 | 9 | 2001-09-09T04:00:00Z | 2001-09-21T03:59:59Z | 2024-11-07T17:49:26Z | 1 | 0 | 090000648030228a |
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;