documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2007-27954" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2007-27954-0219 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Northern Natural Gas - Comment | Other | Other | 2010-12-06T05:00:00Z | 2010 | 12 | 2010-12-06T05:00:00Z | 2013-07-27T23:38:54Z | 0 | 0 | 0900006480bb00bf | ||
| PHMSA-2007-27954-0211 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Avista Corporation - Comment | Other | Other | 2010-12-06T05:00:00Z | 2010 | 12 | 2010-12-06T05:00:00Z | 2010-12-06T15:03:23Z | 0 | 0 | 0900006480bae02a | ||
| PHMSA-2007-27954-0218 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Sunoco Pipeline, L.P. - Comment | Other | Other | 2010-12-06T05:00:00Z | 2010 | 12 | 2010-12-06T05:00:00Z | 2010-12-06T16:08:10Z | 0 | 0 | 0900006480bb00be | ||
| PHMSA-2007-27954-0201 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety; Control Room Management/Human Factors | Rule | Federal Register Publication | 2010-11-16T05:00:00Z | 2010 | 11 | 2010-11-16T05:00:00Z | 2010-12-04T04:59:59Z | 2024-11-12T04:56:22Z | 2010-28714 | 1 | 0 | 0900006480b91c3f |
| PHMSA-2007-27954-0199 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Interstate Natural Gas Association of America - Request for Extension | Other | Extension of Time | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2013-07-27T23:36:40Z | 0 | 0 | 0900006480b819bd | ||
| PHMSA-2007-27954-0196 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety: Control Room Management/Human Factors | Rule | Federal Register Publication | 2010-09-17T04:00:00Z | 2010 | 9 | 2010-09-17T04:00:00Z | 2010-11-17T04:59:59Z | 2024-11-12T04:54:57Z | 2010-23227 | 1 | 0 | 0900006480b51d37 |
| PHMSA-2007-27954-0195 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety: Control Room Management/Human Factors, Correction | Rule | Federal Register Publication | 2010-02-03T05:00:00Z | 2010 | 2 | 2010-02-03T05:00:00Z | 2011-06-11T17:55:33Z | 2010-02190 | 0 | 0 | 0900006480a8c83e |
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;