documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-RSPA-1999-5147" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-1999-5147-0035 | PHMSA | None PHMSA-RSPA-1999-5147 | U.S. DOT/RSPA - Exemption/Grant (3rd Revision) | Other | Exemption/Waiver | 2000-12-15T05:00:00Z | 2000 | 12 | 2000-12-15T05:00:00Z | 2000-12-16T04:59:59Z | 2024-11-07T19:03:55Z | 1 | 0 | 090000648032a7d2 | |
| PHMSA-RSPA-1999-5147-0034 | PHMSA | None PHMSA-RSPA-1999-5147 | Reeled Tubing Incorporated - Renewal/Exemption | Other | Application | 2000-12-13T05:00:00Z | 2000 | 12 | 2000-12-13T05:00:00Z | 2000-12-16T04:59:59Z | 2024-11-07T19:03:55Z | 1 | 0 | 090000648032a7d1 | |
| PHMSA-RSPA-1999-5147-0040 | PHMSA | None PHMSA-RSPA-1999-5147 | Schlumberger Technologies Corporation - Renewal of Exemption DOT-E 12211 | Other | Application | 2000-12-12T05:00:00Z | 2000 | 12 | 2000-12-12T05:00:00Z | 2001-02-10T04:59:59Z | 2024-11-07T19:04:29Z | 1 | 0 | 090000648032a7d8 | |
| PHMSA-RSPA-1999-5147-0039 | PHMSA | None PHMSA-RSPA-1999-5147 | U.S. DOT/RSPA - Exemption/Grant (Fourth Revision) | Other | Exemption/Waiver | 2000-11-27T05:00:00Z | 2000 | 11 | 2000-11-27T05:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:04:28Z | 1 | 0 | 090000648032a7d6 | |
| PHMSA-RSPA-1999-5147-0038 | PHMSA | None PHMSA-RSPA-1999-5147 | U.S. DOT/RSPA - Renewal to Party Status/Grant | Other | Exemption/Waiver | 2000-11-27T05:00:00Z | 2000 | 11 | 2000-11-27T05:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:04:28Z | 1 | 0 | 090000648032a7d5 | |
| PHMSA-RSPA-1999-5147-0037 | PHMSA | None PHMSA-RSPA-1999-5147 | Superior Energy Services, Inc. - Request for Renewal of Party Status | Other | Application | 2000-11-16T05:00:00Z | 2000 | 11 | 2000-11-16T05:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:03:56Z | 1 | 0 | 090000648032a7d4 | |
| PHMSA-RSPA-1999-5147-0036 | PHMSA | None PHMSA-RSPA-1999-5147 | BJ Services Company, USA - Renewal Exemption - Transport Approximately 800,00 Gallons of Liquid Nitrogen in Vessels | Other | Application | 2000-10-26T04:00:00Z | 2000 | 10 | 2000-10-26T04:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:03:55Z | 1 | 0 | 090000648032a7d3 |
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;