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 document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0230 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety: Control Room Management/Human Factors | Rule | Final Rule | 2011-06-16T04:00:00Z | 2011 | 6 | 2011-06-16T04:00:00Z | 2011-06-16T14:17:41Z | 2011-14991 | 0 | 0 | 0900006480e51154 | |
| 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-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 | |
| PHMSA-2007-27954-0194 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety: Control Room Management/Human Factors | Rule | Federal Register Publication | 2009-12-03T05:00:00Z | 2009 | 12 | 2009-12-03T05:00:00Z | 2009-12-04T04:59:59Z | 2024-11-07T22:13:46Z | E9-28469 | 1 | 0 | 0900006480a62020 |
| PHMSA-2007-27954-0030 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | Pipeline Safety: Control Room Management/Human Factors | Rule | Federal Register Publication | 2008-09-12T04:00:00Z | 2008 | 9 | 2008-09-12T04:00:00Z | 2008-11-13T04:59:59Z | 2024-11-12T04:21:11Z | E8-20701 | 1 | 0 | 0900006480701844 |
| PHMSA-2007-27954-0001 | PHMSA | Prevention Thru People - Control Room Management PHMSA-2007-27954 | U.S. DOT/PHMSA - Notice of Public Workshop | Rule | Federal Register Publication | 2007-04-23T04:00:00Z | 2007 | 4 | 2007-04-23T04:00:00Z | 2007-04-24T03:59:59Z | 2024-11-08T04:38:35Z | 1 | 0 | 09000064802be3b9 |
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;