documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OAR-2009-0559" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2009-0559-0182 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | Denial of Reconsideration Petitions on Standards of Performance for New Stationary Sources and Emission Guidelines for Existing Sources: Sewage Sludge Incineration Units | Rule | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-05-22T14:46:16Z | 2012-10098 | 0 | 0 | 0900006480ffeb3d | |||
| EPA-HQ-OAR-2009-0559-0181 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | SSI Reconsideration Denial Letters to Petitioners | Supporting & Related Material | Letter | 2012-04-11T04:00:00Z | 2012 | 4 | 2012-04-11T19:44:25Z | 0 | 0 | 0900006480fed718 | |||
| EPA-HQ-OAR-2009-0559-0180 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | Other unit designs as related to New Stationary Sources and Emission Guidelines for Existing Sources: Sewage Sludge Incineration Units | Supporting & Related Material | Memorandum | 2012-03-21T04:00:00Z | 2012 | 3 | 2012-03-21T14:17:33Z | 0 | 0 | 0900006480fdc110 | |||
| EPA-HQ-OAR-2009-0559-0177 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | EPA Motion Opposition to Stay SSI Rule | Supporting & Related Material | Motion | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T18:40:29Z | 0 | 0 | 0900006480fd769d | |||
| EPA-HQ-OAR-2009-0559-0176 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | NACWA Petition SSI Rule For Emergency Stay | Supporting & Related Material | Petition | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T18:40:29Z | 0 | 0 | 0900006480fd7677 | |||
| EPA-HQ-OAR-2009-0559-0178 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | US Court of Appeals Deny Motion to Stay SSI Rule | Supporting & Related Material | Order | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T18:40:29Z | 0 | 0 | 0900006480fd769e | |||
| EPA-HQ-OAR-2009-0559-0175 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | NACWA Petition for SSI Judicial Review | Supporting & Related Material | Petition | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T18:40:28Z | 0 | 0 | 0900006480fd7676 | |||
| EPA-HQ-OAR-2009-0559-0179 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | Sierra Club Opposition of Emergency Stay of SSI rule | Supporting & Related Material | Motion | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T20:06:47Z | 0 | 0 | 0900006480fd769f | |||
| EPA-HQ-OAR-2009-0559-0174 | EPA | NSPS/Emission Guidelines (EG) for Sewage Sludge Incinerators EPA-HQ-OAR-2009-0559 | NACWA Petition for SSI Reconsideration | Supporting & Related Material | Petition | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T18:40:28Z | 0 | 0 | 0900006480fd766b |
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;