documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R06-OAR-2011-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-R06-OAR-2011-0032-0005 | EPA | None EPA-R06-OAR-2011-0032 | NM043.05 Approval and Promulgation of Air Quality Implementation Plans: New Mexico; Albuquerque/Bernalillo County; Prevention of Significant Deterioration; Greenhouse Gas Tailoring Rule Revisions. 3 pages rzv | Rule | 2011-12-29T05:00:00Z | 2011 | 12 | 2011-12-29T05:00:00Z | 2011-12-29T16:58:24Z | 2011-33280 | 0 | 0 | 0900006480f8ac5f | ||
| EPA-R06-OAR-2011-0032-0003 | EPA | None EPA-R06-OAR-2011-0032 | NM043.03 New Mexico Bernalillo County Amendments to 20.11.1 NMAC, General Provisions, 20.11.61 NMAC, Prevention of Significant Deterioration, and 20.11.42, Operating Permits, submitted to EPA December 15, 2010 (NM-100) -- Attachment D: Notice of Intent to Testify Including Exhibits. 186 pages 4.4 MB r1l | Supporting & Related Material | State/Tribal Submittal | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T14:22:41Z | 0 | 0 | 0900006480bcfe50 | |||
| EPA-R06-OAR-2011-0032-0004 | EPA | None EPA-R06-OAR-2011-0032 | NM043.04 Technical Support Document. 31 pages r9m | Supporting & Related Material | Technical Support Document | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T14:33:08Z | 0 | 0 | 0900006480f27683 | |||
| EPA-R06-OAR-2011-0032-0001 | EPA | None EPA-R06-OAR-2011-0032 | NM043.01 Approvals and Promulgations of Air Quality Implementation Plans: New Mexico; Albuquerque/Bernalillo County; Prevention of Significant Deterioration, Greenhouse Gas Tailoring Rule Revisions. 5 pages r9s | Proposed Rule | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T04:00:00Z | 2011-10-27T03:59:59Z | 2011-09-26T14:18:09Z | 2011-24696 | 0 | 0 | 0900006480f2bdb0 | |
| EPA-R06-OAR-2011-0032-0002 | EPA | None EPA-R06-OAR-2011-0032 | NM043.02 New Mexico Bernalillo County Amendments to 20.11.1 NMAC, General Provisions, 20.11.61 NMAC, Prevention of Significant Deterioration, and 20.11.42, Operating Permits, submitted to EPA December 15, 2010 (NM-100). 186 pages 7.4 MB r1l | Supporting & Related Material | State/Tribal Submittal | 2011-09-26T04:00:00Z | 2011 | 9 | 2011-09-26T14:22:37Z | 0 | 0 | 0900006480bcfe4f |
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;