documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2009-0203" 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-2009-0203-0080 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | Transcript: TPSSC March 25, 2011 | Other | Transcript(s) | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T04:00:00Z | 2024-11-12T04:59:48Z | 1 | 0 | 0900006480c37b65 | ||
| PHMSA-2009-0203-0079 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | Transcript: Joint Meetings – March 24, 2011 | Other | Transcript(s) | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T04:00:00Z | 2013-07-27T23:51:16Z | 0 | 0 | 0900006480c37b64 | ||
| PHMSA-2009-0203-0078 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | Transcript: THLPSSC Meeting – March 23, 2011 | Other | Transcript(s) | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T04:00:00Z | 2013-07-27T23:51:16Z | 0 | 0 | 0900006480c37b3e | ||
| PHMSA-2009-0203-0035 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | Transcript: Technical Advisory Committee Meeting 08/19/2010 | Other | Transcript(s) | 2010-09-13T04:00:00Z | 2010 | 9 | 2010-09-13T04:00:00Z | 2013-07-27T23:30:40Z | 0 | 0 | 0900006480b4e44f | ||
| PHMSA-2009-0203-0003 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | Attached | Other | Report | 2009-08-20T04:00:00Z | 2009 | 8 | 2009-07-17T04:00:00Z | 2013-07-27T22:52:16Z | 0 | 0 | 0900006480a0ce27 | ||
| PHMSA-2009-0203-0002 | PHMSA | Meeting of Pipeline Safety Advisory Committees PHMSA-2009-0203 | U.S. DOT/PHMSA - See Attachments | Other | Additional Information | 2009-08-11T04:00:00Z | 2009 | 8 | 2009-08-11T04:00:00Z | 2013-07-27T22:51:19Z | 0 | 0 | 0900006480a03de4 |
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;