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-2020-0357" 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-2020-0357-0006 | EPA | None EPA-R06-OAR-2020-0357 | AR033.06 Approval and Promulgation of State Air Quality Plans for Designated Facilities and Pollutants: Arkansas, New Mexico, and Albuquerque-Bernalillo County, New Mexico; Control of Emissions From Existing Commercial and Industrial Solid Waste Incineration Units, Negative Declarations, Final rule, 2 pages. | Rule | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2020-11-16T17:21:35Z | 2020-24386 | 0 | 0 | 0900006484960336 | ||
| EPA-R06-OAR-2020-0357-0002 | EPA | None EPA-R06-OAR-2020-0357 | AR033.02 Arkansas CAA Section 111(d) Negative Declaration for Commercial and Industrial Solid Waste Incineration Units (CISWI), submitted to EPA April 26, 2017 (AR-51). 2 pages zx8 | Supporting & Related Material | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-10-05T21:24:36Z | 0 | 0 | 090000648406d1dc | ||||
| EPA-R06-OAR-2020-0357-0004 | EPA | None EPA-R06-OAR-2020-0357 | AR033.04 New Mexico Albuquerque-Bernalillo County CAA Section 111(d) Negative Declaration for Commercial and Industrial Solid Waste Incineration Units (CISWI), submitted to EPA March 4, 2020. 2 pages | Supporting & Related Material | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-10-05T21:24:37Z | 0 | 0 | 09000064847e44f3 | ||||
| EPA-R06-OAR-2020-0357-0001 | EPA | None EPA-R06-OAR-2020-0357 | AR033.01 Air Quality State Implementation Plans; Approvals and Promulgations: Arkansas, New Mexico, and Albuquerque-Bernalillo County, New Mexico; Control of Emissions from Existing Commercial and Industrial Solid Waste Incineration Units, Negative Declarations, Proposed rule, 3 pages. | Proposed Rule | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-08-11T04:00:00Z | 2020-09-11T03:59:59Z | 2020-09-10T01:02:44Z | 2020-16670 | 0 | 0 | 09000064847f0464 | |
| EPA-R06-OAR-2020-0357-0003 | EPA | None EPA-R06-OAR-2020-0357 | AR033.03 New Mexico State CAA Section 111(d) Negative Declaration for Commercial and Industrial Solid Waste Incineration Units (CISWI), submitted to EPA June 15, 2020. 2 pages | Supporting & Related Material | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-10-05T21:24:29Z | 0 | 0 | 09000064847e44f2 |
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;