documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "PHMSA-2022-0075" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Supporting & Related Material 2
- Notice 1
- Other 1
- Rule 1
posted_year 1
- 2022 5
agency_id 1
- PHMSA 5
| 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-0075-0005 | PHMSA | National Gas Pipeline of America - MAOP SP Request PHMSA-2022-0075 | Hazardous Materials: Harmonization with International Standards; Correction | Rule | Correction | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-16T04:00:00Z | 2025-06-17T19:20:35Z | 2022-17525 | 0 | 0 | 090000648523efbf | |
| PHMSA-2022-0075-0004 | PHMSA | National Gas Pipeline of America - MAOP SP Request PHMSA-2022-0075 | Pipeline Safety: Natural Gas Pipeline Co. of America, LLC; Special Permit | Notice | Request for Comments | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-10T04:00:00Z | 2022-09-10T03:59:59Z | 2025-06-16T16:29:50Z | 2022-17133 | 0 | 0 | 090000648522c346 |
| PHMSA-2022-0075-0002 | PHMSA | National Gas Pipeline of America - MAOP SP Request PHMSA-2022-0075 | Natural Gas Pipeline Company of America, L.L.C. (NGPL) - Supporting and Related Material | Supporting & Related Material | Supplement | 2022-06-28T04:00:00Z | 2022 | 6 | 2022-06-28T21:00:30Z | 0 | 0 | 09000064851a7c52 | |||
| PHMSA-2022-0075-0003 | PHMSA | National Gas Pipeline of America - MAOP SP Request PHMSA-2022-0075 | Natural Gas Pipeline Company of America, L.L.C. (NGPL) - Environmental Assessment/FONSI | Supporting & Related Material | Environmental Assessment/FONSI | 2022-06-28T04:00:00Z | 2022 | 6 | 2022-06-28T21:06:00Z | 0 | 0 | 09000064851a7c57 | |||
| PHMSA-2022-0075-0001 | PHMSA | National Gas Pipeline of America - MAOP SP Request PHMSA-2022-0075 | Request for Special Permit – MAOP Reclaim | Other | Letter(s) | 2022-06-01T04:00:00Z | 2022 | 6 | 2022-06-01T04:00:00Z | 2025-06-17T19:20:17Z | 0 | 0 | 0900006485120583 |
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;