documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-1999-0082" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-OAR-1999-0082-0037 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Gary S. Guzy from Robert R. Gasaway, with attachments, dated September 27, 1999 [A-99-08-VI-A-1] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:10Z | 0 | 0 | 0900006484eb172c | |||
| EPA-HQ-OAR-1999-0082-0034 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Robert Perciasepe from William L. Pardee, with attachment, dated October 13,1999 [A-99-08-VI-B-2] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:53Z | 0 | 0 | 0900006484eb1729 | |||
| EPA-HQ-OAR-1999-0082-0033 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Gary S. Guzy from William L. Pardee, with attachment, dated September 28,1999 [A-99-08-VI-B-1] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:36Z | 0 | 0 | 0900006484eb1728 | |||
| EPA-HQ-OAR-1999-0082-0035 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Robert Perciasepe from Michael P. Kenny, Executive Officer, California Air Resources Board, dated October 8,1999 [A-99-08-VI-A-2] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:27Z | 0 | 0 | 0900006484eb172a | |||
| EPA-HQ-OAR-1999-0082-0032 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Thomas F. Reilly, Attorney General, Commonwealth of Massachusetts, from Robert Perciasepe, Assistant Administrator, dated June 24, 1999. [A-99-08-IV-B-1] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:45Z | 0 | 0 | 0900006484eb1727 | |||
| EPA-HQ-OAR-1999-0082-0036 | EPA | Request From Massachusetts Concerning Zero Emission Vehicle Requirements Legacy Docket ID #: A-99-08 EPA-HQ-OAR-1999-0082 | Letter to Thomas F. Reilly from Gary S. Guzy and Robert Perciasepe, with attachment, dated September 15, 1999 [A-99-08-V-A-1] | Supporting & Related Material | Letter | 2022-08-10T04:00:00Z | 2022 | 8 | 2022-08-11T01:30:19Z | 0 | 0 | 0900006484eb172b |
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;