documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2007-0121" and posted_year = 2010 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-2007-0121-0636 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | Impact of Offshore Ship Emissions on Puerto Rico and the U.S. Virgin Islands | Supporting & Related Material | Report | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-06-24T14:50:19Z | 0 | 0 | 0900006480b090c3 | |||
| EPA-HQ-OAR-2007-0121-0635 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | Letter from Linda Lingle, Goveronor, State of Hawaii to The Honorable Lisa P. Jackson, Administrator, USEPA; re: USEPA's Letter of May 13, 2010 | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-08T04:00:00Z | 2010 | 6 | 2010-06-09T13:56:34Z | 0 | 0 | 0900006480afd8dd | |||
| EPA-HQ-OAR-2007-0121-0634 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | Letter from Lisa P. Jackson, Administrator, USEPA to The Honorable Linda Lingle, Governor, State of Hawaii; re: USEPA's Response to the Letter Dated April 26, 2010 | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-08T04:00:00Z | 2010 | 6 | 2010-06-09T13:54:40Z | 0 | 0 | 0900006480afd782 | |||
| EPA-HQ-OAR-2007-0121-0633 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder | Rule | Federal Register Document | 2010-04-30T04:00:00Z | 2010 | 4 | 2011-06-11T16:03:18Z | 2010-02534 | 0 | 0 | 0900006480ae43a6 | ||
| EPA-HQ-OAR-2007-0121-0631 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | ANPRM Draft With Redline Markings Showing Changes Made During OMB Review | Supporting & Related Material | Office of Management and Budget (OMB) | 2010-04-23T04:00:00Z | 2010 | 4 | 2011-06-11T16:03:18Z | 0 | 0 | 0900006480ade13f | |||
| EPA-HQ-OAR-2007-0121-0632 | EPA | Control of Emissions from New Marine Compression-Ignition Engines at or Above 30 Liters per Cylinder; Advanced Notice of Proposed Rulemaking EPA-HQ-OAR-2007-0121 | Federal Register Approval Related to Incorporation by Reference | Supporting & Related Material | Letter, Memorandum, Email | 2010-04-23T04:00:00Z | 2010 | 4 | 2010-04-23T15:08:27Z | 0 | 0 | 0900006480ade140 |
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;