documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-RSPA-1996-13261" and posted_year = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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)
| 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-1996-13261-0069-0002 | PHMSA | None PHMSA-RSPA-1996-13261 | Hazardous Materials Safety - Request for Public Meeting | Other | Request | 1997-10-21T04:00:00Z | 1997 | 10 | 1997-10-21T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:42Z | 1 | 0 | 0900006480309293 | |
| PHMSA-RSPA-1996-13261-0069-0003 | PHMSA | None PHMSA-RSPA-1996-13261 | Hazardous Materials Safety - Request for Public Meeting | Other | Request | 1997-10-21T04:00:00Z | 1997 | 10 | 1997-10-21T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:43Z | 1 | 0 | 0900006480309294 | |
| PHMSA-RSPA-1996-13261-0069-0001 | PHMSA | None PHMSA-RSPA-1996-13261 | Hazardous Materials Safety - Request for Public Meeting | Other | Request | 1997-10-21T04:00:00Z | 1997 | 10 | 1997-10-21T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:42Z | 1 | 0 | 0900006480309292 | |
| PHMSA-RSPA-1996-13261-0005 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/RSPA - Supplemental notice of proposed rulemaking | Rule | Federal Register Publication | 1997-08-20T04:00:00Z | 1997 | 8 | 1997-08-20T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:25Z | 1 | 0 | 090000648030927d | |
| PHMSA-RSPA-1996-13261-0010 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/FAA - Preliminary Regulatory Evaluation | Supporting & Related Material | Analysis | 1997-08-19T04:00:00Z | 1997 | 8 | 2024-11-12T02:33:46Z | 0 | 0 | 090000648030924f | |||
| PHMSA-RSPA-1996-13261-0004 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/RSPA - Notice of Public Meeting | Rule | Federal Register Publication | 1997-07-11T04:00:00Z | 1997 | 7 | 1997-07-11T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:11Z | 1 | 0 | 0900006480309271 | |
| PHMSA-RSPA-1996-13261-0003 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/RSPA - Final Rule; Delay of effective date, technical amendments and corrections | Rule | Federal Register Publication | 1997-06-27T04:00:00Z | 1997 | 6 | 1997-06-27T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:33:59Z | 1 | 0 | 0900006480309264 | |
| PHMSA-RSPA-1996-13261-0002 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/RSPA - Final Rule | Rule | Federal Register Publication | 1997-06-05T04:00:00Z | 1997 | 6 | 1997-06-05T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:33:59Z | 1 | 0 | 0900006480309259 | |
| PHMSA-RSPA-1996-13261-0008 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S. DOT/FAA - Evaluation of Oxygen Cylinder Overpacks Exposed to Elevated Temperature | Other | Report/Survey | 1997-06-01T04:00:00Z | 1997 | 6 | 1997-06-01T04:00:00Z | 1997-03-01T04:59:59Z | 2024-11-12T02:34:59Z | 1 | 0 | 09000064803092a1 | |
| PHMSA-RSPA-1996-13261-0007 | PHMSA | None PHMSA-RSPA-1996-13261 | U.S DOT/RSPA - Prohibition of oxidizers aboard aircraft in Class D compartments | Supporting & Related Material | Analysis | 1997-01-24T05:00:00Z | 1997 | 1 | 2024-11-12T02:34:43Z | 0 | 0 | 0900006480309295 |
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;