documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "PHMSA-2015-0008" 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), last_modified (date)
document_type 2
agency_id 1
- PHMSA 9
| 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-2015-0008-0010 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | Johnstown Regional Energy, LLC 2017 Compliance Report | Supporting & Related Material | Supplement | 2018-01-02T05:00:00Z | 2018 | 1 | 2018-01-02T19:46:11Z | 0 | 0 | 0900006482d8a6ed | |||
| PHMSA-2015-0008-0007 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | State of PA for Johnstown Regional Energy LLC -- Executive Certification Part 3 | Other | Supplement (SUP) | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2016-12-13T20:31:12Z | 0 | 0 | 09000064823e5aa8 | ||
| PHMSA-2015-0008-0009 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | State of PA for Johnstown Regional Energy LLC - Executive Certification Part 1 | Other | Certifications | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2016-12-13T20:32:39Z | 0 | 0 | 09000064823e5aa6 | ||
| PHMSA-2015-0008-0008 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | State of PA for Johnstown Regional Energy LLC -- Executive Certification Part 2 | Other | Supplement (SUP) | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2016-12-13T20:31:40Z | 0 | 0 | 09000064823e5aa7 | ||
| PHMSA-2015-0008-0006 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | U.S. DOT/PHMSA - re: Pennsylvania Public Utility Commission | Other | Supplement (SUP) | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-01-15T15:40:24Z | 0 | 0 | 0900006481e0f041 | ||
| PHMSA-2015-0008-0004 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | U.S. DOT/PHMSA - Johnstown Regional Energy, LLC - Technical follow-up letter to PHMSA (2015-03-18) (final) | Supporting & Related Material | Supplement | 2015-04-06T04:00:00Z | 2015 | 4 | 2016-01-14T20:12:58Z | 0 | 0 | 0900006481a6b11f | |||
| PHMSA-2015-0008-0003 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | U.S. DOT/PHMSA - Memorandum | Other | Memo | 2015-02-27T05:00:00Z | 2015 | 2 | 2015-02-27T05:00:00Z | 2015-02-27T20:07:41Z | 0 | 0 | 0900006481a1780c | ||
| PHMSA-2015-0008-0002 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | Pennsylvania Public Utility Commission - Order | Other | Order | 2015-01-21T05:00:00Z | 2015 | 1 | 2015-01-21T05:00:00Z | 2015-01-21T16:27:37Z | 0 | 0 | 09000064819d2c70 | ||
| PHMSA-2015-0008-0001 | PHMSA | State of Pennsylvania for Johnston Regional Energy PHMSA-2015-0008 | Johnstown Regional Energy, LLC - Petition | Other | Petition(s) | 2015-01-21T05:00:00Z | 2015 | 1 | 2015-01-21T05:00:00Z | 2024-11-11T20:55:18Z | 1 | 0 | 09000064819d1810 |
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;