documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "PHMSA-2015-0210" and document_type = "Other" 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-2015-0210-0012 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Hess Corporation - Withdrawal Letter 04-2018 | Other | Letter(s) | 2018-04-03T04:00:00Z | 2018 | 4 | 2018-04-03T04:00:00Z | 2018-04-03T14:42:25Z | 0 | 0 | 090000648308db2b | ||
| PHMSA-2015-0210-0008 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | FlexSteel Hess Special Permit (VS 10 15 2015 final) and Exhibit A | Other | Petition(s) | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2015-12-15T16:00:34Z | 0 | 0 | 0900006481da7dd1 | ||
| PHMSA-2015-0210-0009 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D2 - TR 004 FlexSteel Technical Manual R02 | Other | Supplement (SUP) | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2015-12-15T16:02:17Z | 0 | 0 | 0900006481da7dd2 | ||
| PHMSA-2015-0210-0010 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D3 - Installation Repair and Handling Manual R01 | Other | Supplement (SUP) | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2015-12-15T16:03:58Z | 0 | 0 | 0900006481da7dd3 | ||
| PHMSA-2015-0210-0002 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | PHMSA-2015-0210, Hess Corporation, Exhibit B. | Other | Exhibit(s) | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2015-12-24T12:56:23Z | 0 | 0 | 0900006481cf7659 | ||
| PHMSA-2015-0210-0001 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Hess - Cover Letter/Request for Special Permit | Other | Request | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2025-06-18T17:19:51Z | 0 | 0 | 0900006481cf7658 | ||
| PHMSA-2015-0210-0004 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D1 - ENP-PPL-STD-00051 Spoolable Line Pipe for Onshore Use | Other | Exhibit(s) | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2015-10-29T14:36:30Z | 0 | 0 | 0900006481cf765b | ||
| PHMSA-2015-0210-0007 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit E - Data Collection Report | Other | Report | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2015-10-29T14:40:00Z | 0 | 0 | 0900006481cf765e | ||
| PHMSA-2015-0210-0005 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D2 - TR 004 FlexSteel Technical Manual R02 | Other | 2015-10-29T00:00:00Z | 2015 | 10 | 2015-11-04T17:17:46Z | 0 | 1 | 0900006481cf765c | ||||
| PHMSA-2015-0210-0006 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D3 - Installation Repair and Handling Manual R01 | Other | 2015-10-29T00:00:00Z | 2015 | 10 | 2015-11-04T17:18:07Z | 0 | 1 | 0900006481cf765d | ||||
| PHMSA-2015-0210-0003 | PHMSA | Hess Corporation -- Request for Special Permit PHMSA-2015-0210 | Exhibit D1 - ENP-PPL-STD-00051 Spoolable Line Pipe for Onshore Use | Other | 2015-10-29T00:00:00Z | 2015 | 10 | 2015-11-04T17:17:02Z | 0 | 1 | 0900006481cf765a |
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;