documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EPA", docket_id = "EPA-HQ-OLEM-2020-0550" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-OLEM-2020-0550-0007 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Redline NHSM RIA documenting changes made during EO 12866 Interagency review | Supporting & Related Material | Interagency Review | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:32:38Z | 0 | 0 | 0900006484edb95a | |||
| EPA-HQ-OLEM-2020-0550-0003 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Compilation of Citizen Complaints Regarding Combustion of Creosote-Treated Railroad Ties | Supporting & Related Material | Report | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:32:17Z | 0 | 0 | 0900006484edb8ca | |||
| EPA-HQ-OLEM-2020-0550-0006 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Redline NHSM Proposal documenting changes made during EO 12866 Interagency Review | Supporting & Related Material | Interagency Review | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:32:06Z | 0 | 0 | 0900006484edb982 | |||
| EPA-HQ-OLEM-2020-0550-0001 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Petition to Revise the Non-Hazardous Secondary Material Standard: Proposed Response | Proposed Rule | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-28T05:00:00Z | 2022-03-30T03:59:59Z | 2022-03-31T01:00:10Z | 2022-01074 | 0 | 0 | 0900006484f4153c | |
| EPA-HQ-OLEM-2020-0550-0004 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Creosote Treated Railroad Ties and Coal Co-firing Technical Support Document | Supporting & Related Material | Technical Support Document | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:32:27Z | 0 | 0 | 0900006484edb8cb | |||
| EPA-HQ-OLEM-2020-0550-0008 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | June 30, 2020 Georgia EPD Meeting Summary with Permits Attached | Supporting & Related Material | Meeting Materials | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:31:45Z | 0 | 0 | 0900006484edb988 | |||
| EPA-HQ-OLEM-2020-0550-0005 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | ISRI Scrap Specifications Circular | Supporting & Related Material | Publication - Copyrighted Materials | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:32:48Z | 0 | 0 | 0900006484edac13 | |||
| EPA-HQ-OLEM-2020-0550-0002 | EPA | Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 EPA-HQ-OLEM-2020-0550 | Assessment of the Potential Costs, Benefits, And Other Impacts for the Proposed Rule: Proposed Response to Petition to Revise the Non-Hazardous Secondary Material Standards Under Part 241 | Supporting & Related Material | Report | 2022-01-28T05:00:00Z | 2022 | 1 | 2022-01-29T01:31:56Z | 0 | 0 | 0900006484ed8dd6 |
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;