documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-RSPA-1998-3554" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, comment_end_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| 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-RSPA-1998-3554-0048 | PHMSA | None PHMSA-RSPA-1998-3554 | U.S. DOT/FMCSA - Report of Ex Parte Oral Communication with Roy N. Clark, President of Baltimore Cargo Tank Services, Inc., on July 25, 2002. | Other | Record of Meeting/Phone Conversation | 2002-07-29T04:00:00Z | 2002 | 7 | 2002-07-29T04:00:00Z | 2002-07-30T03:59:59Z | 2008-01-08T20:21:38Z | 0 | 0 | 0900006480320987 | |
| PHMSA-RSPA-1998-3554-0013 | PHMSA | None PHMSA-RSPA-1998-3554 | Compressed Gas Association - Request to Extend Comment Period | Other | Request | 2002-02-13T05:00:00Z | 2002 | 2 | 2002-02-13T05:00:00Z | 2002-02-15T04:59:59Z | 2008-01-08T20:21:38Z | 0 | 0 | 0900006480320961 | |
| PHMSA-RSPA-1998-3554-0014 | PHMSA | None PHMSA-RSPA-1998-3554 | Cargo Tank Manufacturers Association - Request to Extend Comment Period | Other | Request | 2002-02-12T05:00:00Z | 2002 | 2 | 2002-02-12T05:00:00Z | 2002-02-15T04:59:59Z | 2008-01-08T20:26:01Z | 0 | 0 | 0900006480320962 | |
| PHMSA-RSPA-1998-3554-0007 | PHMSA | None PHMSA-RSPA-1998-3554 | U.S. DOT/RSPA - Proposed Rule; Correction and Extension of Comment Period | Rule | Federal Register Publication | 2002-02-01T05:00:00Z | 2002 | 2 | 2002-02-01T05:00:00Z | 2002-02-02T04:59:59Z | 2008-01-08T20:21:38Z | 0 | 0 | 0900006480320998 | |
| PHMSA-RSPA-1998-3554-0005 | PHMSA | None PHMSA-RSPA-1998-3554 | Compressed Gas Association - Request for Extension of Time | Other | Request | 2002-01-29T05:00:00Z | 2002 | 1 | 2002-01-29T05:00:00Z | 2002-01-30T04:59:59Z | 2008-01-08T20:24:01Z | 0 | 0 | 0900006480320989 | |
| PHMSA-RSPA-1998-3554-0006 | PHMSA | None PHMSA-RSPA-1998-3554 | National Propane Gas Association - Request for Extension of Time In Which To File Comments | Other | Request for Extension of Time in which to file a document | 2002-01-11T05:00:00Z | 2002 | 1 | 2002-01-11T05:00:00Z | 2002-01-31T04:59:59Z | 2008-01-18T17:14:05Z | 0 | 0 | 0900006480382be0 |
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;