documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R06-OAR-2021-0837" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2021-0837-0010 | EPA | None EPA-R06-OAR-2021-0837 | NM087.10 Air Quality State Implementation Plans; Approvals and Promulgations: New Mexico; Clean Air Act Requirements for Nonattainment New Source Review Permitting for the 2015 8-Hour Ozone National Ambient Air Quality Standards, Final rule, 2 pages | Rule | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2022-11-16T15:16:56Z | 2022-24748 | 0 | 0 | 09000064854bafe8 | ||
| EPA-R06-OAR-2021-0837-0005 | EPA | None EPA-R06-OAR-2021-0837 | NM087.05 FACT SHEET in Spanish--HOJA INFORMATIVA: Aprobación del plan de calidad del aire, Nuevo México, requisitos de la Ley de Aire Limpio en cuanto a los permisos de Revisión de Nueva Fuente en Área de Incumplimiento para los Estándares Nacionales de Calidad del Aire Ambiental correspondientes al valor de ozono en 8 horas de 2015 | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:05Z | 0 | 0 | 090000648522d85d | ||||
| EPA-R06-OAR-2021-0837-0006 | EPA | None EPA-R06-OAR-2021-0837 | NM087.06 EPA Tribal Consultation Letter, August 5, 2022 | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:48Z | 0 | 0 | 090000648522d871 | ||||
| EPA-R06-OAR-2021-0837-0002 | EPA | None EPA-R06-OAR-2021-0837 | NM087.02 EPA Technical Support Document: Revisions to the New Mexico State Implementation Plan – Nonattainment New Source Review Program Revisions | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:22Z | 0 | 0 | 0900006484ff113e | ||||
| EPA-R06-OAR-2021-0837-0004 | EPA | None EPA-R06-OAR-2021-0837 | NM087.04 FACT SHEET: Air Plan Approval; New Mexico; Clean Air Act Requirements for Nonattainment New Source Review Permitting for the 2015 8-Hour Ozone National Ambient Air Quality Standards | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:13Z | 0 | 0 | 090000648522d85c | ||||
| EPA-R06-OAR-2021-0837-0007 | EPA | None EPA-R06-OAR-2021-0837 | NM087.07 Environmental Justice (EJ) Screen Report for Sunland Park Area of the El Paso-Las Cruces 2015 8-Hour Ozone Nonattainment Area | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:31Z | 0 | 0 | 090000648522d872 | ||||
| EPA-R06-OAR-2021-0837-0003 | EPA | None EPA-R06-OAR-2021-0837 | NM087.03 New Mexico State Revisions to 20.2.79 NMAC, Permits - Nonattainment Areas, Submitted to EPA August 10, 2021 (NM-167) 713 pages 67.0 MB c3y | Supporting & Related Material | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-20T01:02:39Z | 0 | 0 | 0900006484ff1156 | ||||
| EPA-R06-OAR-2021-0837-0001 | EPA | None EPA-R06-OAR-2021-0837 | NM087.01 Air Quality State Implementation Plans; Approvals and Promulgations: New Mexico; Clean Air Act Requirements for Nonattainment New Source Review Permitting for the 2015 8-Hour Ozone National Ambient Air Quality Standards, Proposed rule, 4 pages | Proposed Rule | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-19T04:00:00Z | 2022-09-20T03:59:59Z | 2022-09-18T01:00:16Z | 2022-17384 | 0 | 0 | 09000064852528fb |
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;