documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-2019-0201" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2019-0201-0014 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | PHMSA-2019-0201 - CGT - Class 1 to 3 SP - Application Letter - Amended Permit | Other | Application | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-07T04:00:00Z | 2022-09-07T16:10:42Z | 0 | 0 | 09000064852c25a1 | ||
| PHMSA-2019-0201-0012 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | CGT - Class 1 to 3 SP Amended - Conditions - 08-08-2022 | Other | Additional Information | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2022-08-30T12:33:43Z | 0 | 0 | 0900006485288dd7 | ||
| PHMSA-2019-0201-0010 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | CGT - Class 1 to 3 SP Amended - Attachment A - Pipeline Segment Integrity Information | Other | Additional Information | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2022-09-07T16:00:29Z | 0 | 0 | 0900006485288731 | ||
| PHMSA-2019-0201-0013 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | CGT - Class 1 to 3 SP Amended - FEA and FONSI - 08-08-2022 | Other | Additional Information | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2022-08-30T12:36:15Z | 0 | 0 | 0900006485288dd9 | ||
| PHMSA-2019-0201-0011 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | CGT - Class 1 to 3 SP Amended - Attachment B - Special Permit Criteria | Other | Additional Information | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2022-08-30T12:31:30Z | 0 | 0 | 0900006485288733 | ||
| PHMSA-2019-0201-0009 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | 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-16T20:19:33Z | 2022-17690 | 0 | 0 | 09000064852454e2 |
| PHMSA-2019-0201-0008 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | TC Energy - Proposed DEA FONSI - 08-08-2022 | Supporting & Related Material | Environmental Assessment/FONSI | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-16T17:28:28Z | 0 | 0 | 090000648522c0c6 | |||
| PHMSA-2019-0201-0007 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | Columbia Gulf Transmission - Requested the Special Permit be Amended | Other | Request | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-10T04:00:00Z | 2022-08-10T14:53:54Z | 0 | 0 | 090000648522c677 | ||
| PHMSA-2019-0201-0006 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | Signed documents for Columbia Gulf Transmission- CGT | Other | Additional Information | 2022-04-13T04:00:00Z | 2022 | 4 | 2022-04-13T04:00:00Z | 2022-04-13T13:40:02Z | 0 | 0 | 0900006485010d49 | ||
| PHMSA-2019-0201-0005 | PHMSA | TC Energy - Special Permit – Class Location PHMSA-2019-0201 | Columbia Gulf (CGT) - Class 1 to 3 SP FEA and FONSI 03-31-2022 | Supporting & Related Material | Environmental Assessment/FONSI | 2022-04-11T04:00:00Z | 2022 | 4 | 2022-04-11T16:54:37Z | 0 | 0 | 090000648500b746 |
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;