documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2019-0207" 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-2019-0207-0011 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Gulf South Pipeline Company, LLC - 2024 Annual Report | Other | Report | 2024-07-09T04:00:00Z | 2024 | 7 | 2024-07-09T04:00:00Z | 2024-07-09T11:17:44Z | 0 | 0 | 09000064865e023c | ||
| PHMSA-2019-0207-0010 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Comment from Anonymous | Other | Report | 2023-07-13T04:00:00Z | 2023 | 7 | 2023-07-13T04:00:00Z | 2023-07-13T19:18:59Z | 0 | 0 | 0900006485c9ee30 | ||
| PHMSA-2019-0207-0008 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Certification 2021 Signed | Other | Clarification | 2021-07-16T04:00:00Z | 2021 | 7 | 2021-07-16T04:00:00Z | 2021-07-16T18:47:17Z | 0 | 0 | 0900006484bfe39d | ||
| PHMSA-2019-0207-0007 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Index 817 (Class) 2021 Annual Report | Other | Report | 2021-07-16T04:00:00Z | 2021 | 7 | 2021-07-16T04:00:00Z | 2021-07-16T18:43:00Z | 0 | 0 | 0900006484bfe372 | ||
| PHMSA-2019-0207-0006 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Special Permit Application submitted by Gulf South Pipeline Company, LP2 | Other | Assessment Document or Analysis | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2021-02-22T19:15:00Z | 0 | 0 | 0900006484a4729c | ||
| PHMSA-2019-0207-0001 | PHMSA | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA PHMSA-2019-0207 | Gulf South Pipeline Company - Special Permit – Class Location- Index 817, Madison, LA | Other | Request | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2025-06-16T20:17:09Z | 0 | 0 | 0900006484106c3a |
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;