documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2013-0003" 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-2013-0003-0011 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 30 Day Marked-Up Version - HL Annual Instructions - PHMSA 7000-1.1 (rev xy-2013) October 30, 2013 | Other | Report | 2013-11-13T05:00:00Z | 2013 | 11 | 2013-11-13T05:00:00Z | 2024-11-12T05:23:54Z | 1 | 0 | 090000648147a389 | ||
| PHMSA-2013-0003-0013 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 30 Day Clean Version - HL Annual Instructions - PHMSA 7000-1.1 (rev xy-2013) September 24, 2013 | Other | Report | 2013-11-13T05:00:00Z | 2013 | 11 | 2013-11-13T05:00:00Z | 2024-11-12T05:23:02Z | 1 | 0 | 090000648147a3ad | ||
| PHMSA-2013-0003-0010 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 30 Day Marked-Up Version - HL Annual Form - PHMSA 7000-1.1 (rev xy-2013) September 24, 2013 | Other | Report | 2013-11-13T05:00:00Z | 2013 | 11 | 2013-11-13T05:00:00Z | 2024-11-12T05:23:53Z | 1 | 0 | 090000648147a386 | ||
| PHMSA-2013-0003-0012 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 30 Day Clean Version - HL Annual Form - PHMSA 7000-1.1 (rev xy-2013) September 24, 2013 | Other | Report | 2013-11-13T05:00:00Z | 2013 | 11 | 2013-11-13T05:00:00Z | 2024-11-12T05:23:02Z | 1 | 0 | 090000648147a38b | ||
| PHMSA-2013-0003-0004 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 60 Day Clean Version - HL Annual Instructions - PHMSA 7000-1.1 (rev xy-2013) January 24, 2013 | Other | Report | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2024-11-07T22:46:11Z | 1 | 0 | 09000064811e5610 | ||
| PHMSA-2013-0003-0001 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 60 Day Marked-Up Version - HL Annual Form - PHMSA 7000-1.1 (rev xy-2013) January 18, 2013 | Other | Report | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2024-11-07T22:48:13Z | 1 | 0 | 09000064811e55c7 | ||
| PHMSA-2013-0003-0003 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 60 Day Clean Version - HL Annual Instructions - PHMSA 7000-1.1 (rev xy-2013) January 18, 2013 | Other | Report | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2024-11-12T05:13:33Z | 1 | 0 | 09000064811e560e | ||
| PHMSA-2013-0003-0002 | PHMSA | Revision to Annual Report for Hazardous Liquid Pipeline Systems PHMSA-2013-0003 | U.S. DOT/PHMSA - 60 Day Marked-Up Version - HL Annual Instructions - PHMSA 7000-1.1 (rev xy-2013) January 24, 2013 | Other | Report | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2024-11-07T22:48:14Z | 1 | 0 | 09000064811e55ca |
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;