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-2014-0281" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_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-R03-OAR-2014-0281-0009 | EPA | None EPA-R03-OAR-2014-0281 | Air Quality State Implementation Plans; Approval and Promulgation: Maryland; Redesignation Request and Associated Maintenance Plan for the Maryland Portion of the Martinsburg-Hagerstown, WV-MD Nonattainment Area for the 1997 Annual Fine Particulate Matter Standard | Rule | 2014-12-16T05:00:00Z | 2014 | 12 | 2014-12-16T05:00:00Z | 2014-12-16T15:22:39Z | 2014-29336 | 0 | 0 | 090000648197bcd2 | ||
| EPA-R03-OAR-2014-0281-0008 | EPA | None EPA-R03-OAR-2014-0281 | Ukeiley comment on Martinsburg RR | Supporting & Related Material | 2014-12-10T05:00:00Z | 2014 | 12 | 2015-01-12T04:00:26Z | 0 | 0 | 090000648191d00c | ||||
| EPA-R03-OAR-2014-0281-0003 | EPA | None EPA-R03-OAR-2014-0281 | EPA Technical Support Document - Emissions Inventory | Supporting & Related Material | Technical Support Document | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:04:46Z | 0 | 0 | 0900006481750a51 | |||
| EPA-R03-OAR-2014-0281-0005 | EPA | None EPA-R03-OAR-2014-0281 | EPA Completeness letter and checklist | Supporting & Related Material | Letter | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:04:12Z | 0 | 0 | 0900006481751bab | |||
| EPA-R03-OAR-2014-0281-0001 | EPA | None EPA-R03-OAR-2014-0281 | Air Quality State Implementation Plans; Approval and Promulgation: Maryland; Redesignation Request and Associated Maintenance Plan for the Maryland Portion of the Martinsburg-Hagerstown, WV-MD Nonattainment Area | Proposed Rule | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T04:00:00Z | 2014-09-23T03:59:59Z | 2014-08-21T13:02:45Z | 2014-19869 | 0 | 0 | 0900006481837eac | |
| EPA-R03-OAR-2014-0281-0004 | EPA | None EPA-R03-OAR-2014-0281 | EPA Air Quality System (AQS) Design Value Report for PM2.5 monitors in the Martinsburg-Hagerstown Area | Supporting & Related Material | Report | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:03:55Z | 0 | 0 | 0900006481751baa | |||
| EPA-R03-OAR-2014-0281-0006 | EPA | None EPA-R03-OAR-2014-0281 | EPA Technical Support Document - Adequacy of Motor Vehicle Emissions Budgets | Supporting & Related Material | Technical Support Document | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:04:29Z | 0 | 0 | 0900006481751bac | |||
| EPA-R03-OAR-2014-0281-0007 | EPA | None EPA-R03-OAR-2014-0281 | Cross State Air Pollution Rule Air Quality Modeling TSD | Supporting & Related Material | Technical Support Document | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:05:32Z | 0 | 0 | 0900006481752bbd | |||
| EPA-R03-OAR-2014-0281-0002 | EPA | None EPA-R03-OAR-2014-0281 | State Submittal - Request for Redesignation of the Maryland portion of the Martinsburg-Hagerstown, MD-WV Nonattainment Area for the 1997 Annual PM2.5 NAAQS | Supporting & Related Material | State/Tribal Submittal | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T13:05:15Z | 0 | 0 | 0900006481750a50 |
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;