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-2002-0081" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, 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-0081-0024 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Background Information for Standards of Performance: Electric Submerged ARC Furnaces for Production of Ferroalloys Volume 1: Proposed standards, EPA-450/2-74-018a. [A-90-49-IV-A-3] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:36Z | 0 | 0 | 0900006483d0a84d | |||
| EPA-HQ-OAR-2002-0081-0025 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Background Information for Standards of Performance: Primary Aluminum Industry Volume 1: Proposed Standards, EPA-450/2-74-020a [A-90-49-IV-A-4] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:37Z | 0 | 0 | 0900006483d0a84e | |||
| EPA-HQ-OAR-2002-0081-0029 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Control of Volatile Organic Emissions from Existing Stationary Sources - Volume II: Surface Coating of cans, Coils Paper, Fabrics, Automobiles, and Light-Duty Trucks, EPA-450/2-77-008, (OAQPS No. 1.2-073) [A-90-49-IV-A-5] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:59Z | 0 | 0 | 0900006483d0a84f | |||
| EPA-HQ-OAR-2002-0081-0026 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Control of Volatile Organic Emissions from Solvent Metal Cleaning, EPA-450/2-77-022 (OAQPS NO. 1.2-079) [A-90-49-IV-A-7] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:45Z | 0 | 0 | 0900006483d0a851 | |||
| EPA-HQ-OAR-2002-0081-0028 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Standards Support and Environmental Impact Statement Volume 1: Proposed Standards of Performance for Stationary Gas Turbines, EPA-450/2-77.017a, September 1977 [A-90-49-IV-A-6] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:58Z | 0 | 0 | 0900006483d0a850 | |||
| EPA-HQ-OAR-2002-0081-0027 | EPA | National Emission Standards for Hazardous Air Pollutants: Revision of Source Category List Under Section 112 of the Clean Air Act Legacy Docket ID #: A-90-49 EPA-HQ-OAR-2002-0081 | Control of Volatile Organic Emissions from Existing Stationary Sources Volume IV: Surface Coating fro Insulation of Magnet Wire, EPA-150/2-7703(OAQPS NO. 1.2-087) [A-90-49-IV-A-8] | Supporting & Related Material | Publication - USEPA | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T16:40:45Z | 0 | 0 | 0900006483d0a852 |
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;