documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2022-0084" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2022-0084-0007 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | CGT - Attachment B - Class 1 to 3 SP - Criteria Document | Other | Report | 2022-08-26T04:00:00Z | 2022 | 8 | 2022-08-26T04:00:00Z | 2022-08-26T14:21:37Z | 0 | 0 | 0900006485279c67 | ||
| PHMSA-2022-0084-0005 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | CGT -Class 1 to 3 SP Condition-08-04-2022 | Other | Special Permit | 2022-08-25T04:00:00Z | 2022 | 8 | 2022-08-25T04:00:00Z | 2022-08-26T14:24:32Z | 0 | 0 | 09000064852759fa | ||
| PHMSA-2022-0084-0006 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | Attachment A: Listing of Columbia Gulf Transmission (CGT) - Special Permit Segments | Other | Additional Information | 2022-08-25T04:00:00Z | 2022 | 8 | 2022-08-25T04:00:00Z | 2022-08-25T18:14:11Z | 0 | 0 | 09000064852759fc | ||
| PHMSA-2022-0084-0004 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | Pipeline Safety: Request for Special Permit: Columbia Gulf Transmission, LLC | Notice | Request for Comments | 2022-08-17T04:00:00Z | 2022 | 8 | 2022-08-17T04:00:00Z | 2022-09-17T03:59:59Z | 2025-06-16T18:02:14Z | 2022-17689 | 0 | 0 | 0900006485245363 |
| PHMSA-2022-0084-0003 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | CCT - Class 1 to 3 SP - DEA and Proposed FONSI - 08-04-2022 | Supporting & Related Material | Environmental Assessment/FONSI | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-26T14:22:43Z | 0 | 0 | 090000648522c05e | |||
| PHMSA-2022-0084-0002 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | CGT - Special Permit Application Letter | Other | Letter(s) | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-10T04:00:00Z | 2022-08-24T20:42:39Z | 0 | 0 | 090000648522c058 | ||
| PHMSA-2022-0084-0001 | PHMSA | Columbia Gulf Transmission – Request for special permit PHMSA-2022-0084 | Columbia Gulf Transmission – Request for special permit | Other | Request | 2022-06-29T04:00:00Z | 2022 | 6 | 2022-06-29T04:00:00Z | 2025-06-16T18:02:31Z | 0 | 0 | 09000064851aa2cf |
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;