documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where docket_id = "EPA-HQ-OAR-2004-0085" and posted_year = 1995 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-HQ-OAR-2004-0085-0026 | EPA | Delegation of National Emission Standards for Hazardous Air Pollutants for Source Categories (NESHAP); State of Nevada; Nevada Division of Environmental Protection - Bureau of Air Pollution Control Legacy Docket ID #: A-96-25 EPA-HQ-OAR-2004-0085 | State of California; Request for Approval of Section 112(l) Authority for Hazardous Air Pollutants; Perchloroethylene Air Emission Standards From Dry Cleaning Facilities [II-A-3] | Rule | Federal Register Document | 1995-10-17T04:00:00Z | 1995 | 10 | 1995-10-17T04:00:00Z | 1995-11-17T04:59:59Z | 2025-06-26T02:02:51Z | 53728 | 0 | 0 | 09000064800c583c |
| EPA-HQ-OAR-2004-0085-0045 | EPA | Delegation of National Emission Standards for Hazardous Air Pollutants for Source Categories (NESHAP); State of Nevada; Nevada Division of Environmental Protection - Bureau of Air Pollution Control Legacy Docket ID #: A-96-25 EPA-HQ-OAR-2004-0085 | Clean Air Act Proposed Interim Approval of the Operating Permits Program; Division of Environmental Protection; Nevada [V-A-1] | Rule | Federal Register Document | 1995-08-07T04:00:00Z | 1995 | 8 | 1995-08-07T04:00:00Z | 1995-09-07T03:59:59Z | 2025-06-26T02:04:35Z | 40140 | 0 | 0 | 09000064800c590d |
| EPA-HQ-OAR-2004-0085-0058 | EPA | Delegation of National Emission Standards for Hazardous Air Pollutants for Source Categories (NESHAP); State of Nevada; Nevada Division of Environmental Protection - Bureau of Air Pollution Control Legacy Docket ID #: A-96-25 EPA-HQ-OAR-2004-0085 | Clean Air Act Proposed Interim Approval of the Operating Permits Program; Arizone Department of Environmental Quality, Maricopa County Environmental Services, Pima County Department of Environmental Quality, Pinal County Air Quality Control District, Arizona [VII-A-1] | Rule | Federal Register Document | 1995-07-13T04:00:00Z | 1995 | 7 | 1995-07-13T04:00:00Z | 1995-08-15T03:59:59Z | 2025-06-26T02:11:07Z | 36083 | 0 | 0 | 09000064800c59aa |
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;