documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-RSPA-2003-16330" 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-2003-16330-0012 | PHMSA | None PHMSA-RSPA-2003-16330 | U.S. DOT/RSPA - Final Rule | Rule | Federal Register Publication | 2004-06-28T04:00:00Z | 2004 | 6 | 2004-06-28T04:00:00Z | 2004-06-29T03:59:59Z | 2024-11-12T02:49:56Z | 1 | 0 | 0900006480316ff5 | |
| PHMSA-RSPA-2003-16330-0011 | PHMSA | None PHMSA-RSPA-2003-16330 | El Paso Pipeline Group - Request of a 30-Day Extension to the Comment Period | Other | Request | 2004-01-02T05:00:00Z | 2004 | 1 | 2004-01-02T05:00:00Z | 2004-01-06T04:59:59Z | 2024-11-12T02:49:56Z | 1 | 0 | 0900006480316ff3 | |
| PHMSA-RSPA-2003-16330-0010 | PHMSA | None PHMSA-RSPA-2003-16330 | INGAA - Request for Extension of Comment Period | Other | Request | 2004-01-02T05:00:00Z | 2004 | 1 | 2004-01-02T05:00:00Z | 2004-01-03T04:59:59Z | 2024-11-12T02:49:56Z | 1 | 0 | 0900006480316ff1 | |
| PHMSA-RSPA-2003-16330-0007 | PHMSA | None PHMSA-RSPA-2003-16330 | U.S. DOT/RSPA - Request for Information | Rule | Federal Register Publication | 2003-12-01T05:00:00Z | 2003 | 12 | 2003-12-01T05:00:00Z | 2003-12-02T04:59:59Z | 2024-11-12T02:50:05Z | 1 | 0 | 0900006480317002 | |
| PHMSA-RSPA-2003-16330-0005 | PHMSA | None PHMSA-RSPA-2003-16330 | Interstate Natural Gas Association of America (INGAA) - Request for Stay of the Effective Date of the Final Rule | Other | Request | 2003-10-21T04:00:00Z | 2003 | 10 | 2003-10-21T04:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:50:05Z | 1 | 0 | 0900006480316ffe | |
| PHMSA-RSPA-2003-16330-0006 | PHMSA | None PHMSA-RSPA-2003-16330 | American Gas Association - Request for Administrative Stay and Petition for Reconsideration | Other | Request | 2003-10-21T04:00:00Z | 2003 | 10 | 2003-10-21T04:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:50:05Z | 1 | 0 | 0900006480317000 | |
| PHMSA-RSPA-2003-16330-0004 | PHMSA | None PHMSA-RSPA-2003-16330 | Interstate Natural Gas Association of America (INGAA) - Petition for Reconsideration | Other | Petition for Reconsideration | 2003-10-21T04:00:00Z | 2003 | 10 | 2003-10-21T04:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:50:04Z | 1 | 0 | 0900006480316ffc | |
| PHMSA-RSPA-2003-16330-0001 | PHMSA | None PHMSA-RSPA-2003-16330 | U.S. DOT/RSPA - Limited Suspension of Enforcement for Compliance with Final Rule | Rule | Federal Register Publication | 1995-02-07T05:00:00Z | 1995 | 2 | 1995-02-07T05:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:49:56Z | 1 | 0 | 0900006480316fef | |
| PHMSA-RSPA-2003-16330-0002 | PHMSA | None PHMSA-RSPA-2003-16330 | U.S. DOT/RSPA - Notice of Proposed Rulemaking; Response to Petitions for Reconsideration | Rule | Federal Register Publication | 1994-09-30T04:00:00Z | 1994 | 9 | 1994-09-30T04:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:50:04Z | 1 | 0 | 0900006480316ff7 | |
| PHMSA-RSPA-2003-16330-0003 | PHMSA | None PHMSA-RSPA-2003-16330 | U.S. DOT/RSPA - Final Rule | Rule | Federal Register Publication | 1994-04-12T04:00:00Z | 1994 | 4 | 1994-04-12T04:00:00Z | 2003-10-22T03:59:59Z | 2024-11-12T02:50:04Z | 1 | 0 | 0900006480316ffa |
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;