documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OAR-2004-0467" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 4
| 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-2004-0467-0004 | EPA | Polyether Polyols Production -NESHAP Legacy Docket ID #: A-96-38 EPA-HQ-OAR-2004-0467 | A-96-38-F-R-DECEMBER-15-1993 Registration of Fuels and Fuel Additives; Regulation of Fuels and Fuel Additives; Emissions Control System Performance Warranty Regulations and Voluntary Aftermarket Part Certification Program | Rule | Final Rule | 2019-09-13T04:00:00Z | 2019 | 9 | 2019-09-13T04:00:00Z | 2019-09-13T19:30:21Z | 93-30570 | 0 | 0 | 0900006483f5aa33 | |
| EPA-HQ-OAR-2004-0467-0001 | EPA | Polyether Polyols Production -NESHAP Legacy Docket ID #: A-96-38 EPA-HQ-OAR-2004-0467 | National Emission Standards for Hazardous Air Pollutants for Polyether Polyols Production; Synthetic Organic Chemical Manufacturing Industry; Epoxy Resins Production and Non-Nylon Polyamides Production; and Petroleum Refineries | Rule | Federal Register Document | 2000-07-06T04:00:00Z | 2000 | 7 | 2008-01-08T21:21:50Z | 41594 | 0 | 0 | 09000064800be9cf | ||
| EPA-HQ-OAR-2004-0467-0003 | EPA | Polyether Polyols Production -NESHAP Legacy Docket ID #: A-96-38 EPA-HQ-OAR-2004-0467 | Legacy Index for Docket A-96-38 | Supporting & Related Material | Other | 2000-03-07T05:00:00Z | 2000 | 3 | 2006-09-02T16:12:56Z | 0 | 0 | 09000064800be9ed | |||
| EPA-HQ-OAR-2004-0467-0002 | EPA | Polyether Polyols Production -NESHAP Legacy Docket ID #: A-96-38 EPA-HQ-OAR-2004-0467 | Memorandum to David Svendsgaard, EPA/OAQPS/OCG from: Mary-Jo Caldwell, Caldwell Environmental, Inc.and Joanne Seaman, EC/R Inc.re: Polyether Polyols Production Industry Characterization [A-96-38 II-B-3] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-14T04:00:00Z | 1997 | 8 | 2006-09-02T16:12:56Z | 0 | 0 | 09000064800be9db |
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;