documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "PHMSA-2023-0061" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- PHMSA 12
| 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-2023-0061-0015 | PHMSA | None PHMSA-2023-0061 | Minutes for GPAC 1127 - 1201 2023 meeting | Other | Additional Information | 2024-02-05T05:00:00Z | 2024 | 2 | 2024-02-05T05:00:00Z | 2024-02-05T15:29:04Z | 0 | 0 | 09000064863d92f9 | ||
| PHMSA-2023-0061-0010 | PHMSA | None PHMSA-2023-0061 | GPAC Transcript Day 3 | Other | Transcript(s) | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2023-12-26T16:03:53Z | 0 | 0 | 090000648635a5db | ||
| PHMSA-2023-0061-0008 | PHMSA | None PHMSA-2023-0061 | GPAC Transcript Day 1 | Other | Transcript(s) | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2023-12-26T16:01:47Z | 0 | 0 | 090000648635a5ed | ||
| PHMSA-2023-0061-0009 | PHMSA | None PHMSA-2023-0061 | GPAC Transcript Day 2 | Other | Transcript(s) | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2023-12-26T16:02:27Z | 0 | 0 | 090000648635a5ef | ||
| PHMSA-2023-0061-0011 | PHMSA | None PHMSA-2023-0061 | GPAC Transcript Day 4 | Other | Transcript(s) | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2023-12-26T16:04:32Z | 0 | 0 | 090000648635a5d9 | ||
| PHMSA-2023-0061-0012 | PHMSA | None PHMSA-2023-0061 | GPAC Transcript Day 5 | Other | Transcript(s) | 2023-12-26T05:00:00Z | 2023 | 12 | 2023-12-26T05:00:00Z | 2023-12-26T16:05:26Z | 0 | 0 | 090000648635a5dd | ||
| PHMSA-2023-0061-0007 | PHMSA | None PHMSA-2023-0061 | Vote Slides: Topics 1-4Pipeline Safety: Gas Pipeline Leak Detection and Repair NPRM | Other | Additional Information | 2023-12-11T05:00:00Z | 2023 | 12 | 2023-12-11T05:00:00Z | 2023-12-11T20:15:02Z | 0 | 0 | 0900006486324ac4 | ||
| PHMSA-2023-0061-0005 | PHMSA | None PHMSA-2023-0061 | MHT Review of Gathering Pipeline Methane Study for GPA Midstream Association | Other | Hearing/Meeting Summary | 2023-11-24T05:00:00Z | 2023 | 11 | 2023-11-24T05:00:00Z | 2023-11-24T14:50:32Z | 0 | 0 | 09000064862a82dc | ||
| PHMSA-2023-0061-0004 | PHMSA | None PHMSA-2023-0061 | Members Portfolio | Other | Additional Information | 2023-11-17T05:00:00Z | 2023 | 11 | 2023-11-17T05:00:00Z | 2023-11-17T19:46:03Z | 0 | 0 | 090000648628f326 | ||
| PHMSA-2023-0061-0003 | PHMSA | None PHMSA-2023-0061 | Pre-Brief | Pipeline Safety: Gas Pipeline Leak Detection and Repair NPRM | Other | Brief | 2023-11-16T05:00:00Z | 2023 | 11 | 2023-11-16T05:00:00Z | 2023-11-16T21:23:11Z | 0 | 0 | 090000648628989f | ||
| PHMSA-2023-0061-0002 | PHMSA | None PHMSA-2023-0061 | Pipeline Safety: Class Location Change Requirements - Gas Pipeline Advisory Committee - November 2023 (Presentation) | Supporting & Related Material | Supplement | 2023-10-20T04:00:00Z | 2023 | 10 | 2023-10-20T13:03:52Z | 0 | 0 | 0900006486112f10 | |||
| PHMSA-2023-0061-0001 | PHMSA | None PHMSA-2023-0061 | Meetings: Pipeline Safety; Gas Pipeline Advisory Committee | Notice | Public Meetings | 2023-09-19T04:00:00Z | 2023 | 9 | 2023-09-19T04:00:00Z | 2024-01-06T04:59:59Z | 2024-11-07T00:52:12Z | 2023-20159 | 1 | 0 | 0900006485fcfdb2 |
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;