documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "PHMSA-RSPA-2004-19854" and posted_year = 2009 sorted by posted_date descending
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)
| 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-2004-19854-0260 | PHMSA | None PHMSA-RSPA-2004-19854 | Pipeline Safety: Integrity Management Program for GasDistribution Pipelines | Rule | Federal Register Publication | 2009-12-31T05:00:00Z | 2009 | 12 | 2009-12-31T05:00:00Z | 2010-02-05T04:59:59Z | 2024-11-07T22:12:05Z | E9-31078 | 1 | 0 | 0900006480a748b6 |
| PHMSA-RSPA-2004-19854-0258 | PHMSA | None PHMSA-RSPA-2004-19854 | Pipeline Safety: Integrity Management Program for Gas Distribution Pipelines | Rule | Federal Register Publication | 2009-12-04T05:00:00Z | 2009 | 12 | 2009-12-04T05:00:00Z | 2010-01-05T04:59:59Z | 2024-11-12T04:49:18Z | E9-28467 | 1 | 0 | 0900006480a62af6 |
| PHMSA-RSPA-2004-19854-0257 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - Distribution Integrity Management: Guidance for Master Meter and Small Liquefied Petroleum Gas Pipeline Operators | Other | Other | 2009-12-01T05:00:00Z | 2009 | 12 | 2009-12-01T05:00:00Z | 2024-11-07T22:10:37Z | 1 | 0 | 0900006480a61375 | ||
| PHMSA-RSPA-2004-19854-0256 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - Annual Report Form: Gas Distribution System | Other | Report | 2009-11-30T05:00:00Z | 2009 | 11 | 2009-11-30T05:00:00Z | 2013-08-11T04:36:42Z | 0 | 0 | 0900006480a5f191 | ||
| PHMSA-RSPA-2004-19854-0254 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - Final Regulatory Flexibility Analysis | Other | Other | 2009-11-27T05:00:00Z | 2009 | 11 | 2009-11-27T05:00:00Z | 2013-08-11T03:05:37Z | 0 | 0 | 0900006480a5f18e | ||
| PHMSA-RSPA-2004-19854-0253 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - Environmental Assessment: Final Rule | Other | Other | 2009-11-27T05:00:00Z | 2009 | 11 | 2013-07-27T23:00:52Z | 0 | 0 | 0900006480a5f18b | |||
| PHMSA-RSPA-2004-19854-0255 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - Regulatory Impact Analysis: Final Rule | Other | Other | 2009-11-27T05:00:00Z | 2009 | 11 | 2009-11-27T05:00:00Z | 2013-08-11T03:05:37Z | 0 | 0 | 0900006480a5f190 | ||
| PHMSA-RSPA-2004-19854-0251 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT/PHMSA - See Attachments | Other | Additional Information | 2009-01-13T05:00:00Z | 2009 | 1 | 2009-01-13T05:00:00Z | 2013-07-27T22:35:40Z | 0 | 0 | 090000648081a72b | ||
| PHMSA-RSPA-2004-19854-0252 | PHMSA | None PHMSA-RSPA-2004-19854 | U.S. DOT Meeting Notes from Discussion on DIMP at the Annual NAPSR Meeting in Boise, ID - September 18, 2008 | Other | Record of Meeting/Phone Conversation | 2009-01-13T05:00:00Z | 2009 | 1 | 2009-01-13T05:00:00Z | 2013-07-27T22:35:45Z | 0 | 0 | 090000648081c5f2 |
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;