documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-RCRA-2001-0027" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_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-RCRA-2001-0027-0045 | EPA | None EPA-HQ-RCRA-2001-0027 | Combustion Emissions Technical Resource Document (CETRED), Draft, Chapter 4 | Supporting & Related Material | Publication | 2002-02-05T05:00:00Z | 2002 | 2 | 2006-10-23T20:16:20Z | 0 | 0 | 09000064800e192e | |||
| EPA-HQ-RCRA-2001-0027-0046 | EPA | None EPA-HQ-RCRA-2001-0027 | Final Technical Support Document for HWC MACT Standards, Volume III: Selection of MACT Standards and Technologies, Chapter 3 | Supporting & Related Material | Other | 2002-02-05T05:00:00Z | 2002 | 2 | 2006-10-23T20:16:20Z | 0 | 0 | 09000064800e1941 | |||
| EPA-HQ-RCRA-2001-0027-0047 | EPA | None EPA-HQ-RCRA-2001-0027 | Final Response to Comments to the Proposed HWC MACT Standards, Volume II: Compliance, Dioxin/Furan Control Operating Parameters | Supporting & Related Material | Comment Response | 2002-02-05T05:00:00Z | 2002 | 2 | 2006-10-23T20:16:20Z | 0 | 0 | 09000064800e194e | |||
| EPA-HQ-RCRA-2001-0027-0044 | EPA | None EPA-HQ-RCRA-2001-0027 | Memorandum to Portland Cement NESHAP Docket Regarding Portland Cement NESHAP - Response to Comments Contained in Letter from William Bumpers, Counsel for the American Portland Cement Alliance | Supporting & Related Material | Letter, Memorandum, Email | 2002-02-05T05:00:00Z | 2002 | 2 | 2006-10-23T20:16:20Z | 0 | 0 | 09000064800e191c | |||
| EPA-HQ-RCRA-2001-0027-0043 | EPA | None EPA-HQ-RCRA-2001-0027 | Petition for Review of Final Action of the United States Environmental Protection Agency, Brief for Respondents United States Environmental Protection Agency, et al., No. 99-1457 (And Consolidated Cases) | Supporting & Related Material | Other | 2002-02-05T05:00:00Z | 2002 | 2 | 2006-10-23T20:16:20Z | 0 | 0 | 09000064800e1903 |
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;