documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-RSPA-1999-5050" 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-5050-0029 | PHMSA | None PHMSA-RSPA-1999-5050 | U.S. DOT/RSPA - Renewal Exemption/Grant | Other | Exemption/Waiver | 2000-12-04T05:00:00Z | 2000 | 12 | 2000-12-04T05:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:11:20Z | 1 | 0 | 0900006480329b34 | |
| PHMSA-RSPA-1999-5050-0028 | PHMSA | None PHMSA-RSPA-1999-5050 | OraSure Technologies, Inc. - Response to Voicemail | Other | Additional Information | 2000-11-30T05:00:00Z | 2000 | 11 | 2000-11-30T05:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:10:49Z | 1 | 0 | 0900006480329b33 | |
| PHMSA-RSPA-1999-5050-0027 | PHMSA | None PHMSA-RSPA-1999-5050 | OraSure Technologies, Inc. - Name Change | Other | Additional Information | 2000-10-03T04:00:00Z | 2000 | 10 | 2000-10-03T04:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:10:49Z | 1 | 0 | 0900006480329b31 | |
| PHMSA-RSPA-1999-5050-0026 | PHMSA | None PHMSA-RSPA-1999-5050 | STC Technologies, Inc. - Renewal Exemption - Authorize the Transportation in Commerce of Certain Division 2.2 Gases in a DOT 2Q Container | Other | Application | 2000-07-30T04:00:00Z | 2000 | 7 | 2000-07-30T04:00:00Z | 2001-01-10T04:59:59Z | 2024-11-07T19:10:48Z | 1 | 0 | 0900006480329b30 | |
| PHMSA-RSPA-1999-5050-0025 | PHMSA | None PHMSA-RSPA-1999-5050 | STC Technologies, Inc. - Additional Information | Other | Additional Information | 2000-03-02T05:00:00Z | 2000 | 3 | 2000-03-02T05:00:00Z | 2000-04-13T03:59:59Z | 2024-11-07T19:10:48Z | 1 | 0 | 0900006480329b2f | |
| PHMSA-RSPA-1999-5050-0024 | PHMSA | None PHMSA-RSPA-1999-5050 | U.S. DOT/RSPA - Notice of Applications for Modification of Exemption | Rule | Federal Register Publication | 2000-02-29T05:00:00Z | 2000 | 2 | 2000-02-29T05:00:00Z | 2000-03-02T04:59:59Z | 2024-11-07T19:10:48Z | 1 | 0 | 0900006480329b2e | |
| PHMSA-RSPA-1999-5050-0030 | PHMSA | None PHMSA-RSPA-1999-5050 | STC Technologies, Inc. - Exemption Revision DOT-E 12178 | Other | Application | 2000-01-17T05:00:00Z | 2000 | 1 | 2000-01-17T05:00:00Z | 2001-08-14T03:59:59Z | 2024-11-07T19:11:20Z | 1 | 0 | 0900006480329b36 | |
| PHMSA-RSPA-1999-5050-0023 | PHMSA | None PHMSA-RSPA-1999-5050 | STC Technologies, Inc. - Request for Modification | Other | Application | 2000-01-17T05:00:00Z | 2000 | 1 | 2000-01-17T05:00:00Z | 2000-02-25T04:59:59Z | 2024-11-07T19:10:48Z | 1 | 0 | 0900006480329b2d |
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;