documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2005-0082" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 6
| 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-2005-0082-0006 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | Summart of Public Comments and Responses on Revisions to Nonmetallic Mineral Processing Plants NSPS. March 27, 1997. [A-95-46-V-C-1] | Supporting & Related Material | Comment Response | 2020-12-30T05:00:00Z | 2020 | 12 | 2020-12-30T19:57:24Z | 0 | 0 | 0900006483f2b818 | |||
| EPA-HQ-OAR-2005-0082-0005 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | Federal Register. Standards of Performance for New Stationary Sources; Standards of Performance for Nonmetallic Mineral Processing Plants ; Amendments. 62 FR 31351 -31361. June 9, 1997. [A-95-46-V-A-1] | Supporting & Related Material | Publication - Previous/Related FR Notice | 2020-12-30T05:00:00Z | 2020 | 12 | 2020-12-30T19:57:23Z | 0 | 0 | 0900006483f2b7eb | |||
| EPA-HQ-OAR-2005-0082-0004 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | A-95-46-F-R-JUNE-27-1996 Standards of Performance for New Stationary Sources for Nonmetallic Mineral Processing Plants; Amendments | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2019-09-10T04:00:00Z | 2019 | 9 | 2019-09-10T04:00:00Z | 1996-08-27T03:59:59Z | 2019-09-10T19:02:26Z | 96-16012 | 0 | 0 | 0900006483f2bbb6 |
| EPA-HQ-OAR-2005-0082-0003 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | Legacy Index for Docket A-95-46 | Supporting & Related Material | Index | 2006-05-19T04:00:00Z | 2006 | 5 | 2006-09-02T16:32:27Z | 0 | 0 | 0900006480173404 | |||
| EPA-HQ-OAR-2005-0082-0001 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | Standards of Performance for New Stationary Sources; Strandards of Performance for Nonmetallic Mineral Processing Plants; Amendments | Rule | Federal Register Document | 1997-06-09T04:00:00Z | 1997 | 6 | 2020-02-19T02:02:36Z | 31351 | 0 | 0 | 09000064800c0593 | ||
| EPA-HQ-OAR-2005-0082-0002 | EPA | Non-Metallic Minerals NSPS Revision Legacy Docket ID #: A-95-46 EPA-HQ-OAR-2005-0082 | Response to Comments Regarding New Source Performance Standards (NSPS) for Nonmetallic Mineral Processing Plants. [A-95-46 V-C-1] | Supporting & Related Material | Comment Response | 1997-04-21T04:00:00Z | 1997 | 4 | 2006-09-02T16:32:27Z | 0 | 0 | 09000064800c059f |
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;