documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R09-OAR-2011-0638" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-R09-OAR-2011-0638-0052 | EPA | None EPA-R09-OAR-2011-0638 | REVISED FINAL INDEX replacing EPA-R09-OAR-2011-0638-0050 per the attorney, Jefferson Wehling, The index in the docket needs to be replaced with one that has been revised to conform to the court filing: Medical Advocates v EPA (9th Cir., No. 12-70630) | Supporting & Related Material | Index | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T14:43:51Z | 0 | 0 | 0900006480fe4edb | |||
| EPA-R09-OAR-2011-0638-0056 | EPA | None EPA-R09-OAR-2011-0638 | 76 FR 77739, “Approval and Promulgation of Air Quality Implementation Plans; Massachusetts and New Hampshire; Determination of Attainment of the One-Hour Ozone Standard,” Proposed rule, December 14, 2011. | Supporting & Related Material | Publication - Previous/Related FR Notice | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T14:43:52Z | 0 | 0 | 0900006480fe4f16 | |||
| EPA-R09-OAR-2011-0638-0055 | EPA | None EPA-R09-OAR-2011-0638 | 76 FR 58507, “Proposed Settlement Agreement, Clean Air Act Citizen Suit,” Notice of proposed settlement agreement; Request for public comment, September 21, 2011. | Supporting & Related Material | Publication - Previous/Related FR Notice | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T14:43:52Z | 0 | 0 | 0900006480fe4f15 | |||
| EPA-R09-OAR-2011-0638-0054 | EPA | None EPA-R09-OAR-2011-0638 | 74 FR 25153, “Approval and Promulgation of Air Quality Implementation Plans; California; Determination of Attainment of the 1-Hour Ozone Standard for the Ventura County Area,” Direct final rule, May 27, 2009. | Supporting & Related Material | Publication - Previous/Related FR Notice | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T14:43:51Z | 0 | 0 | 0900006480fe4f14 | |||
| EPA-R09-OAR-2011-0638-0053 | EPA | None EPA-R09-OAR-2011-0638 | 74 FR 18641, “Approval and Promulgation of Air Quality Implementation Plans; Wisconsin; Finding of Attainment for 1-Hour Ozone for the Milwaukee-Racine, WI Area,” Direct final rule, April 24, 2009. | Supporting & Related Material | Publication - Previous/Related FR Notice | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T14:43:51Z | 0 | 0 | 0900006480fe4f13 |
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;