documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R06-OAR-2005-NM-0005" and posted_year = 2005 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-R06-OAR-2005-NM-0005-0006 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.05 Congressional Review Receipts. | Supporting & Related Material | Interagency Review | 2005-12-10T05:00:00Z | 2005 | 12 | 2011-12-01T22:50:20Z | 0 | 0 | 09000064800f2c45 | |||
| EPA-R06-OAR-2005-NM-0005-0005 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.04 Federal Register Proposed Rule as signed by the Regional Administrator. | Supporting & Related Material | Signed Federal Register Document | 2005-12-10T05:00:00Z | 2005 | 12 | 2011-12-01T22:50:09Z | 0 | 0 | 09000064800f2c30 | |||
| EPA-R06-OAR-2005-NM-0005-0003 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.03 March 30, 2005, State Submittal: Albuquerque/Bernalillo County Air Quality Control Board Request for Updated Delegation of Federal NSPS and NESHAP Standards via Amendments to 20.11.63 NMAC (New Mexico Administrative Code), New Source Performance Standards for Stationary Sources; and 20.11.64 NMAC, Emission Standards For Hazardous Air Pollutants for Stationary Sources. 52 pages | Supporting & Related Material | State/Tribal Submittal | 2005-12-10T05:00:00Z | 2005 | 12 | 2011-12-01T22:49:33Z | 0 | 0 | 09000064800a91ed | |||
| EPA-R06-OAR-2005-NM-0005-0004 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.02 Federal Register Direct Final Rule as signed by the Regional Administrator. | Supporting & Related Material | Signed Federal Register Document | 2005-12-10T05:00:00Z | 2005 | 12 | 2007-01-12T20:51:39Z | 0 | 0 | 09000064800f2c1c | |||
| EPA-R06-OAR-2005-NM-0005-0002 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.01 New Source Performance Standards and National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Albuquerque- Bernalillo County Air Quality Control Board | Rule | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2006-01-10T04:59:59Z | 2011-12-01T22:48:43Z | 05-23810 | 0 | 0 | 09000064800f1c4a | |
| EPA-R06-OAR-2005-NM-0005-0001 | EPA | None EPA-R06-OAR-2005-NM-0005 | NM008.02 Approval of the Clean Air Act Section 112(l) Program for Hazardous Air Pollutants and Delegation of Authority to the Albuquerque-Bernalillo County Air Quality Control Board | Proposed Rule | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2006-01-10T04:59:59Z | 2011-12-01T22:49:03Z | 05-23809 | 0 | 0 | 09000064800f1a9a |
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;