documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2009-0192" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2009-0192-0242 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | Industry Perspectives on State Damage Prevention Programs - Supplemental Comment | Other | Supplemental Comment | 2012-09-25T04:00:00Z | 2012 | 9 | 2012-09-25T04:00:00Z | 2012-09-25T14:44:42Z | 0 | 0 | 090000648112049b | ||
| PHMSA-2009-0192-0213 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | Iowa One Call - Comment | Other | Acknowledgement Letter/Receipt | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-06-25T20:12:43Z | 0 | 0 | 0900006481051879 | ||
| PHMSA-2009-0192-0205 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | Pipeline Safety: Damage Prevention Programs | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-05-30T04:00:00Z | 2012 | 5 | 2012-05-30T04:00:00Z | 2012-07-10T03:59:59Z | 2024-11-12T05:00:51Z | 2012-13025 | 1 | 0 | 09000064810215a8 |
| PHMSA-2009-0192-0201 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | Pipeline Safety: Pipeline Damage Prevention Programs | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-04-02T04:00:00Z | 2012 | 4 | 2012-04-02T04:00:00Z | 2012-06-02T03:59:59Z | 2024-11-12T04:48:04Z | 2012-07550 | 1 | 0 | 0900006480fe64f3 |
| PHMSA-2009-0192-0200 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | U.S. DOT/PHMSA - Draft Environmental Assessment - Pipeline Damage Prevention Program - April 2011 | Supporting & Related Material | Supplement | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T16:34:59Z | 0 | 0 | 0900006480fe425f | |||
| PHMSA-2009-0192-0199 | PHMSA | Excavation Damage Rule PHMSA-2009-0192 | U.S. DOT/PHMSA - Preliminary Regulatory Evaluation - Pipeline Damage Prevention Program - August 2011 | Supporting & Related Material | Supplement | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T16:32:20Z | 0 | 0 | 0900006480fe425d |
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;