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-2006-0735" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-2006-0735-5921 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Revisions to Lead Ambient Air Monitoring Requirements | Proposed Rule | Federal Register Document | 2009-12-30T05:00:00Z | 2009 | 12 | 2009-12-30T05:00:00Z | 2010-02-17T04:59:59Z | 2011-06-11T16:02:33Z | E9-31049 | 0 | 0 | 0900006480a74184 |
| EPA-HQ-OAR-2006-0735-5917 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Lead Emissions From the Use of Leaded Aviation Gasoline in the United States Technical Support Document, October 2008 [EPA420-R-08-020] | Supporting & Related Material | Technical Support Document | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T16:31:45Z | 0 | 0 | 0900006480a6d0f1 | |||
| EPA-HQ-OAR-2006-0735-5919 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Memorandum from Kevin A. Cavender, USEPA, to Lead Docket OAR-2006-0735 Subject: Summary of Discussion of Lead Monitoring Near Airports at 2009 National Association of Clean Air Agencies (NACAA) Monitoring Subcommittee Meeting Dated December 17, 2009 | Supporting & Related Material | Letter, Memorandum, Email | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T18:48:03Z | 0 | 0 | 0900006480a6d0f4 | |||
| EPA-HQ-OAR-2006-0735-5918 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Community-Scale Air Toxics Monitoring-Sun Valley Neighborhood and General Aviation Airports USEPA Air Toxics Data Analysis Workshop October 2-4, 2007 | Supporting & Related Material | Meeting/Teleconference Materials | 2009-12-18T05:00:00Z | 2009 | 12 | 2011-11-16T16:55:23Z | 0 | 0 | 0900006480a6cbfa | |||
| EPA-HQ-OAR-2006-0735-5915 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Petition for Reconsideration in the Matter of: Final Rule for National Ambient Air Quality Standards (NAAQS) for Lead January 12, 2009 | Supporting & Related Material | Petition | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T16:19:41Z | 0 | 0 | 0900006480a6d0f2 | |||
| EPA-HQ-OAR-2006-0735-5916 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Letter from Administrator Jackson to Mr. Avinash Kar, Natural Resources Defense Council Dated July 22, 2009 | Supporting & Related Material | Letter, Memorandum, Email | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T16:19:45Z | 0 | 0 | 0900006480a6d0f3 | |||
| EPA-HQ-OAR-2006-0735-5920 | EPA | Review of the National Ambient Air Quality Standards for Lead EPA-HQ-OAR-2006-0735 | Supporting Statement-Revisions to Pb (lead) Ambient Air Monitoring Requirements - Proposed Rule USEPA ICR Number 2378.01 | Supporting & Related Material | ICR Supporting Statement | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T18:48:07Z | 0 | 0 | 0900006480a6d0f5 |
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;