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-2002-0074" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-2002-0074-0001 | EPA | National Emission Standards for Hazardous Air Pollutants (NESHAP): Surface Coating of Plastic Parts and Products Legacy Docket ID #: A-99-12 EPA-HQ-OAR-2002-0074 | National Emission Standards for Hazardous Air Pollutants: Surface Coating of Plastic Parts and Products; Proposed Rule | Proposed Rule | Federal Register Document | 2002-12-04T05:00:00Z | 2002 | 12 | 2020-11-07T02:03:44Z | 02-29073 | 0 | 0 | 09000064800b865f | ||
| EPA-HQ-OAR-2002-0074-0025 | EPA | National Emission Standards for Hazardous Air Pollutants (NESHAP): Surface Coating of Plastic Parts and Products Legacy Docket ID #: A-99-12 EPA-HQ-OAR-2002-0074 | Legacy Index for Docket A-99-12 | Supporting & Related Material | Index | 2002-07-24T04:00:00Z | 2002 | 7 | 2020-11-05T19:50:04Z | 0 | 0 | 09000064800b8872 | |||
| EPA-HQ-OAR-2002-0074-0027 | EPA | National Emission Standards for Hazardous Air Pollutants (NESHAP): Surface Coating of Plastic Parts and Products Legacy Docket ID #: A-99-12 EPA-HQ-OAR-2002-0074 | Memorandum to Kim Teal, OAQPS/USEPA from Christy Burlew, Eastern Research Group (ERG) re: Development of the Information Collection Request (ICR) Database for the Plastic Parts and Products (Surface Coating) NESHAP [A-99-12-II-B-8] | Supporting & Related Material | Memorandum | 2002-07-24T04:00:00Z | 2002 | 7 | 2020-11-05T19:52:03Z | 0 | 0 | 09000064800b88a2 | |||
| EPA-HQ-OAR-2002-0074-0011 | EPA | National Emission Standards for Hazardous Air Pollutants (NESHAP): Surface Coating of Plastic Parts and Products Legacy Docket ID #: A-99-12 EPA-HQ-OAR-2002-0074 | Notes from telephone conversation between Kim Teal, USEPA, Christy Burlew, ERG, Inc. and Mr. Gary Ross, Jr. Toyota Motor Manufacturing (TMMNA) | Supporting & Related Material | Meeting or Teleconference Materials | 2002-07-01T04:00:00Z | 2002 | 7 | 2006-09-02T14:09:55Z | 0 | 0 | 09000064800b871e |
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;