documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "PHMSA-RSPA-1998-4470" and posted_year = 1999 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Rule 2
- Notice 1
- Other 1
- Supporting & Related Material 1
posted_year 1
- 1999 · 5 ✖
agency_id 1
- PHMSA 5
| 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-4470-0023 | PHMSA | None PHMSA-RSPA-1998-4470 | U.S. DOT/RSPA - Notice of Proposed Rulemaking/Pipeline Safety: Areas Unusually Sensitive to Environmental Damage | Rule | Federal Register Publication | 1999-12-30T05:00:00Z | 1999 | 12 | 1999-12-30T05:00:00Z | 1999-12-31T04:59:59Z | 2024-11-08T03:55:22Z | 1 | 0 | 09000064802a646b | |
| PHMSA-RSPA-1998-4470-0005 | PHMSA | None PHMSA-RSPA-1998-4470 | U.S. DOT/RSPA - Transcript - Meeting held on May 4, 1999 | Other | Transcript(s) | 1999-12-13T05:00:00Z | 1999 | 12 | 1999-12-13T05:00:00Z | 1999-12-14T04:59:59Z | 2024-11-08T03:52:17Z | 1 | 0 | 09000064802a6495 | |
| PHMSA-RSPA-1998-4470-0004 | PHMSA | None PHMSA-RSPA-1998-4470 | U.S. DOT/RSPA - Notice of Advisory Committee Meetings | Notice | Notice | 1999-10-05T04:00:00Z | 1999 | 10 | 1999-10-05T04:00:00Z | 1999-10-06T03:59:59Z | 2024-11-08T03:52:04Z | 1 | 0 | 09000064802a648a | |
| PHMSA-RSPA-1998-4470-0003 | PHMSA | None PHMSA-RSPA-1998-4470 | U.S. DOT/RSPA - Technical Advisory Committee Meetings | Supporting & Related Material | Supplement | 1999-08-04T04:00:00Z | 1999 | 8 | 2024-11-08T03:51:37Z | 0 | 0 | 09000064802a647f | |||
| PHMSA-RSPA-1998-4470-0002 | PHMSA | None PHMSA-RSPA-1998-4470 | U.S. DOT/RSPA - Notice of Advisory Committee Meeting - Pipeline Safety: Meetings of Pipeline Safety Advisory Committees | Rule | Federal Register Publication | 1999-04-01T05:00:00Z | 1999 | 4 | 1999-04-01T05:00:00Z | 1999-04-02T04:59:59Z | 2024-11-08T03:54:54Z | 1 | 0 | 09000064802a6449 |
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;