documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OAR-2007-0352" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2007-0352-1466 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Letter from Teresa Marks, Director, Arkansas Department of Environmental Quality (DEQ) to Lisa Jackson, Administrator USEPA, dated 9/21/10 | Supporting & Related Material | Letter, Memorandum, Email | 2011-04-13T04:00:00Z | 2011 | 4 | 2012-03-24T19:36:04Z | 0 | 0 | 0900006480c244b6 | |||
| EPA-HQ-OAR-2007-0352-1462 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Denial of the Petitions to Reconsider the Final Rule Promulgating the Primary National Ambient Air Quality Standard for Sulfur Dioxide | Rule | Federal Register Document | 2011-01-26T05:00:00Z | 2011 | 1 | 2011-01-26T14:44:18Z | 2011-01353 | 0 | 0 | 0900006480bd341e | ||
| EPA-HQ-OAR-2007-0352-1459 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Guidance Concerning the Implementation of the 1-Hour Sulfur Dioxide (SO2) NAAQS for the Prevention of Significant Deterioration | Supporting & Related Material | Letter, Memorandum, Email | 2011-01-14T05:00:00Z | 2011 | 1 | 2011-01-14T19:42:12Z | 0 | 0 | 0900006480bca686 | |||
| EPA-HQ-OAR-2007-0352-1461 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Redesignaton of Sulfur Dioxide Nonattainment Areas in the Absence of Monitored Data, John S. Seitz to RADD, October 18, 2000 | Supporting & Related Material | Letter, Memorandum, Email | 2011-01-14T05:00:00Z | 2011 | 1 | 2011-01-14T19:42:16Z | 0 | 0 | 0900006480bca6fa | |||
| EPA-HQ-OAR-2007-0352-1460 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Section 107 Designation Policy, Sheldon Meyers to Directors Air Management Division, Regions 1-10, April 21, 1983 | Supporting & Related Material | Letter, Memorandum, Email | 2011-01-14T05:00:00Z | 2011 | 1 | 2011-01-14T19:42:14Z | 0 | 0 | 0900006480bca6f9 | |||
| EPA-HQ-OAR-2007-0352-1458 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Memorandum from Sheldon Meyers, USEPA to Director, Air and Waste Management Division, Regions II-IV, VI-VIII, X and Director, Air Management Division, Regions I, V, IX. Subject: Section 107 Designation Policy Summary 4/21/1983 | Supporting & Related Material | Letter, Memorandum, Email | 2011-01-11T05:00:00Z | 2011 | 1 | 2011-01-11T13:19:03Z | 0 | 0 | 0900006480bc8737 | |||
| EPA-HQ-OAR-2007-0352-1457 | EPA | Review of the Primary NAAQS for Sulfur Dioxide EPA-HQ-OAR-2007-0352 | Memorandum from John S. Seitz, USEPA to Regional Air Division Directors. Subject: Redesignation of Sulfur Dioxide Nonattainment Areas in the Absence of Monitored Data 10/18/2000 | Supporting & Related Material | Letter, Memorandum, Email | 2011-01-11T05:00:00Z | 2011 | 1 | 2011-01-11T13:19:01Z | 0 | 0 | 0900006480bc8736 |
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;