documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2019-0098" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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-2019-0098-0028 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | September 22 MEETING AGENDA | Other | Meeting Exhibits | 2021-09-14T04:00:00Z | 2021 | 9 | 2021-09-14T04:00:00Z | 2021-09-14T14:49:38Z | 0 | 0 | 0900006484d7c3b1 | ||
| PHMSA-2019-0098-0027 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Meetings: Lithium Battery Air Safety Advisory Committee | Notice | Public Meetings | 2021-09-07T04:00:00Z | 2021 | 9 | 2021-09-07T04:00:00Z | 2021-09-09T03:59:59Z | 2021-09-07T12:49:08Z | 2021-19159 | 0 | 0 | 0900006484d56774 |
| PHMSA-2019-0098-0026 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Meeting Minutes from March 3rd-4th Lithium Battery Air Safety Advisory Committee | Other | Additional Information | 2021-04-15T04:00:00Z | 2021 | 4 | 2021-04-15T04:00:00Z | 2021-04-15T12:09:52Z | 0 | 0 | 0900006484aa7bc9 | ||
| PHMSA-2019-0098-0024 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Presentations, March 3, 2021, Lithium Battery Air Safety FAC | Other | Supplement (SUP) | 2021-03-11T05:00:00Z | 2021 | 3 | 2021-03-11T05:00:00Z | 2021-03-12T00:43:15Z | 0 | 0 | 0900006484a66308 | ||
| PHMSA-2019-0098-0025 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Presentations, March 4, 2021, Lithium Battery Air Safety FAC | Other | Supplement (SUP) | 2021-03-11T05:00:00Z | 2021 | 3 | 2021-03-11T05:00:00Z | 2021-03-12T00:43:29Z | 0 | 0 | 0900006484a6630c | ||
| PHMSA-2019-0098-0023 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | March 3-4 MEETING AGENDA Final | Supporting & Related Material | Meeting Materials | 2021-03-11T05:00:00Z | 2021 | 3 | 2021-03-12T00:43:03Z | 0 | 0 | 0900006484a4c74a | |||
| PHMSA-2019-0098-0022 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Incorrect document posted | Other | Additional Information | 2021-02-24T05:00:00Z | 2021 | 2 | 2021-02-24T05:00:00Z | 2024-11-12T23:30:34Z | 1 | 0 | 0900006484a4c738 | ||
| PHMSA-2019-0098-0020 | PHMSA | Hazardous Materials: Lithium Battery Safety Advisory Committee PHMSA-2019-0098 | Meetings: Lithium Battery Air Safety Advisory Committee | Notice | Public Meetings | 2021-01-12T05:00:00Z | 2021 | 1 | 2021-01-12T05:00:00Z | 2021-02-18T04:59:59Z | 2024-11-06T23:45:08Z | 2021-00440 | 1 | 0 | 09000064849ef95a |
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;