documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R03-OAR-2017-0437" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 9
| 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-R03-OAR-2017-0437-0014 | EPA | None EPA-R03-OAR-2017-0437 | Air Quality State Implementation Plans; Approval and Promulgation: Pennsylvania; Adoption of Control Techniques Guidelines for Control of Volatile Organic Compound Emissions from Miscellaneous Metal Parts Surface Coating, Miscellaneous Plastic Parts Surface Coating, and Pleasure Craft Surface Coatings | Rule | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T04:00:00Z | 2018-08-10T12:15:47Z | 2018-17078 | 0 | 0 | 09000064835fff5a | ||
| EPA-R03-OAR-2017-0437-0013 | EPA | None EPA-R03-OAR-2017-0437 | Air Quality State Implementation Plans; Approvals and Promulgations: Pennsylvania; Adoption of Control Techniques Guidelines for Control of Volatile Organic Compound Emissions from Miscellaneous Metal Parts Surface Coating, Miscellaneous Plastic Parts Surface Coating, and Pleasure Craft Surface Coatings; Withdrawal | Rule | 2017-12-13T05:00:00Z | 2017 | 12 | 2017-12-13T05:00:00Z | 2018-02-27T15:51:58Z | 2017-26764 | 0 | 0 | 0900006482d01f7a | ||
| EPA-R03-OAR-2017-0437-0002 | EPA | None EPA-R03-OAR-2017-0437 | Air Quality State Implementation Plans; Approval and Promulgation: Pennsylvania; Adoption of Control Techniques Guidelines for Control of Volatile Organic Compound Emissions From Miscellaneous Metal Parts Surface Coating, etc. | Proposed Rule | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-16T04:00:00Z | 2017-11-16T04:59:59Z | 2017-11-08T02:03:12Z | 2017-22240 | 0 | 0 | 0900006482bcdfa7 | |
| EPA-R03-OAR-2017-0437-0006 | EPA | None EPA-R03-OAR-2017-0437 | June 1, 2010 - MMPP CTG Reconsideration | Supporting & Related Material | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-17T01:11:21Z | 0 | 0 | 0900006482b6c69e | ||||
| EPA-R03-OAR-2017-0437-0003 | EPA | None EPA-R03-OAR-2017-0437 | State Submittal | Supporting & Related Material | State/Tribal Submittal | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-17T01:11:31Z | 0 | 0 | 0900006482b6c660 | |||
| EPA-R03-OAR-2017-0437-0004 | EPA | None EPA-R03-OAR-2017-0437 | Control Techniques Guidelines for Miscellaneous Metal and Plastic Parts Coatings | Supporting & Related Material | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-17T01:10:44Z | 0 | 0 | 0900006482b6c663 | ||||
| EPA-R03-OAR-2017-0437-0007 | EPA | None EPA-R03-OAR-2017-0437 | PA MMPP CTG TSD-signed | Supporting & Related Material | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-17T01:11:02Z | 0 | 0 | 0900006482b6c724 | ||||
| EPA-R03-OAR-2017-0437-0005 | EPA | None EPA-R03-OAR-2017-0437 | Control Techniques Guidelines for Automobile and Light-Duty Truck Assembly Coatings | Supporting & Related Material | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-17T01:10:53Z | 0 | 0 | 0900006482b6c69a | ||||
| EPA-R03-OAR-2017-0437-0001 | EPA | None EPA-R03-OAR-2017-0437 | Air Quality State Implementation Plans; Approval and Promulgation: Pennsylvania; Adoption of Control Techniques Guidelines for Control of Volatile Organic Compound Emissions From Miscellaneous Metal Parts Surface Coating, etc. | Rule | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-16T04:00:00Z | 2017-11-16T04:59:59Z | 2017-11-14T02:01:08Z | 2017-22241 | 0 | 0 | 0900006482bcdb0c |
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;