documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OAR-2003-0062" and posted_year = 2009 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-HQ-OAR-2003-0062-0296 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Implementation of the New Source Review (NSR) Program for Particulate Matter Less than 2.5 Micrometers (PM2.5); Final Rule to Stay the Grandfathering Provision for PM2.5 | Notice | Federal Register Document | 2009-09-22T04:00:00Z | 2009 | 9 | 2009-09-22T14:37:30Z | E9-22903 | 0 | 0 | 0900006480a28eb7 | ||
| EPA-HQ-OAR-2003-0062-0286 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Cleared Proposed Rule from the Office of Management and Budget (OMB) | Supporting & Related Material | Office of Management and Budget (OMB) | 2009-07-23T04:00:00Z | 2009 | 7 | 2009-07-23T17:11:45Z | 0 | 0 | 09000064809ec445 | |||
| EPA-HQ-OAR-2003-0062-0284 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Implementation of the New Source Review (NSR) Program for Particulate Matter Less than 2.5 Micrometers (PM2.5); Proposal to Extend Administrative Stay | Proposed Rule | Federal Register Document | 2009-07-23T04:00:00Z | 2009 | 7 | 2009-07-23T04:00:00Z | 2009-08-25T03:59:59Z | 2009-07-23T18:30:05Z | E9-17541 | 0 | 0 | 09000064809f8fab |
| EPA-HQ-OAR-2003-0062-0285 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Submittal of Proposed Rule to Extend Administrative Stay to the Office of Management and Budget (OMB) | Supporting & Related Material | Office of Management and Budget (OMB) | 2009-07-23T04:00:00Z | 2009 | 7 | 2009-07-23T17:11:41Z | 0 | 0 | 09000064809ec443 | |||
| EPA-HQ-OAR-2003-0062-0283 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Implementation of the New Source Review Program for Particulate Matter Less Than 2.5 Micrometers (PM2.5); Final Rule, notice of grant of reconsideration and administrative stay of regulation | Rule | Federal Register Document | 2009-06-01T04:00:00Z | 2009 | 6 | 2011-06-11T15:59:14Z | E9-12572 | 0 | 0 | 09000064809c0cdd | ||
| EPA-HQ-OAR-2003-0062-0282 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Letter from Lisa P. Jackson, Administrator, USEPA to Paul R. Cort, Earthjustice granting February 10 petition for reconsideration and stay | Supporting & Related Material | Letter, Memorandum, Email | 2009-04-27T04:00:00Z | 2009 | 4 | 2009-04-27T19:53:25Z | 0 | 0 | 090000648096d4ce | |||
| EPA-HQ-OAR-2003-0062-0281 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Letter from Paul Cort, Staff Attorney, EarthJustice, to Lisa P. Jackson, Administrator, USEPA | Supporting & Related Material | Letter, Memorandum, Email | 2009-04-27T04:00:00Z | 2009 | 4 | 2009-04-27T19:53:22Z | 0 | 0 | 090000648096d4cd | |||
| EPA-HQ-OAR-2003-0062-0280 | EPA | Proposed Rule To Implement the Fine Particle National Ambient Air Quality Standards EPA-HQ-OAR-2003-0062 | Letter from Administrator Johnson to Paul Cort, Earthjustice, on Behalf of National Resources Defense Council and Sierra Club Denying a Petition for Reconsideration of Certain Parts of the PM2.5 New Source Review (NSR) Implementation Final Rule and Denying Request for Administrative Stay - 1/14/2009 | Supporting & Related Material | Letter, Memorandum, Email | 2009-01-15T05:00:00Z | 2009 | 1 | 2009-01-15T17:25:00Z | 0 | 0 | 09000064808207b5 |
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;