documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "PHMSA", docket_id = "PHMSA-RSPA-1997-2131" and posted_year = 1997 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-1997-2131-0016 | PHMSA | None PHMSA-RSPA-1997-2131 | U.S. DOT/RSPA - Exemption/Grant | Other | Exemption/Waiver | 1997-07-08T04:00:00Z | 1997 | 7 | 1997-07-08T04:00:00Z | 2001-06-13T03:59:59Z | 2024-11-12T02:49:31Z | 1 | 0 | 0900006480316c32 | |
| PHMSA-RSPA-1997-2131-0014 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical - Additional Information Pursuant To Conversation of 5/7/97 Regarding Exemption Application | Other | Additional Information | 1997-05-12T04:00:00Z | 1997 | 5 | 1997-05-12T04:00:00Z | 2001-06-07T03:59:59Z | 2024-11-12T02:49:31Z | 1 | 0 | 0900006480316c30 | |
| PHMSA-RSPA-1997-2131-0013 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical - Additional Information Pursuant To Conversation On 4/24/97 Regarding Exemption Application | Other | Additional Information | 1997-04-28T04:00:00Z | 1997 | 4 | 1997-04-28T04:00:00Z | 2001-06-07T03:59:59Z | 2024-11-12T02:49:31Z | 1 | 0 | 0900006480316c2f | |
| PHMSA-RSPA-1997-2131-0012 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical - Additional Information Regarding Exemption Application | Other | Additional Information | 1997-04-17T04:00:00Z | 1997 | 4 | 1997-04-17T04:00:00Z | 2001-06-07T03:59:59Z | 2024-11-12T02:49:14Z | 1 | 0 | 0900006480316c2e | |
| PHMSA-RSPA-1997-2131-0003 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical Company - Risk Assessment Analysis | Other | Additional Information | 1997-04-08T04:00:00Z | 1997 | 4 | 1997-04-08T04:00:00Z | 1997-04-09T03:59:59Z | 2024-11-12T02:49:42Z | 1 | 0 | 0900006480316c3b | |
| PHMSA-RSPA-1997-2131-0011 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical - Additional Information Regarding 12/12/96 Exemption Application | Other | Additional Information | 1997-03-21T05:00:00Z | 1997 | 3 | 1997-03-21T05:00:00Z | 2001-06-07T03:59:59Z | 2024-11-12T02:49:14Z | 1 | 0 | 0900006480316c2d | |
| PHMSA-RSPA-1997-2131-0010 | PHMSA | None PHMSA-RSPA-1997-2131 | U.S. DOT/RSPA - Request for Additional Information Regarding Application for Exemption | Other | Request | 1997-03-04T05:00:00Z | 1997 | 3 | 1997-03-04T05:00:00Z | 2001-06-07T03:59:59Z | 2024-11-12T02:49:14Z | 1 | 0 | 0900006480316c2c | |
| PHMSA-RSPA-1997-2131-0002 | PHMSA | None PHMSA-RSPA-1997-2131 | List of Application for Exemptions - Federal Register Notice | Notice | Notice | 1997-02-25T05:00:00Z | 1997 | 2 | 1997-02-25T05:00:00Z | 1997-02-26T04:59:59Z | 2024-11-12T02:49:32Z | 1 | 0 | 0900006480316c36 | |
| PHMSA-RSPA-1997-2131-0001 | PHMSA | None PHMSA-RSPA-1997-2131 | Ashland Chemical - Exemption - UN 1A2/Y1.4/100 Open Head Steel Drums | Other | Application | 1997-01-28T05:00:00Z | 1997 | 1 | 1997-01-28T05:00:00Z | 1997-01-29T04:59:59Z | 2024-11-12T02:49:14Z | 1 | 0 | 0900006480316c2b |
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;