documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2014-0653" and posted_year = 2021 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-HQ-OPP-2014-0653-0058 | EPA | None EPA-HQ-OPP-2014-0653 | Public Comment Period Extension for Pentachlorophenol, Creosote, Chromated Arsenicals, and Dichromic Acid Proposed Interim Decisions Published in March 2021 | Other | 2021-05-10T04:00:00Z | 2021 | 5 | 2021-05-10T04:00:00Z | 2021-05-11T00:33:22Z | 0 | 0 | 0900006484abcfcd | |||
| EPA-HQ-OPP-2014-0653-0048 | EPA | None EPA-HQ-OPP-2014-0653 | Conference Calls Between EPA, KMG-Bernuth and Treated Wood Council to Discuss Potential Label Changes Proposed in the Registration Review Proposed Interim Decision (PID) for Pentachlorophenol | Supporting & Related Material | Meeting Materials | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:32:39Z | 0 | 0 | 090000648493eeef | |||
| EPA-HQ-OPP-2014-0653-0052 | EPA | None EPA-HQ-OPP-2014-0653 | A Qualitative Assessment on the Use, Usage, and Benefits of Pentachlorophenol (PC#063001) as a Wood Preservative | Supporting & Related Material | Risk Assessment | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:32:29Z | 0 | 0 | 09000064849d2d6f | |||
| EPA-HQ-OPP-2014-0653-0049 | EPA | None EPA-HQ-OPP-2014-0653 | Pentachlorophenol Proposed Interim Registration Review Decision, Case 2505 | Supporting & Related Material | Decision | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:31:58Z | 0 | 0 | 09000064849cf003 | |||
| EPA-HQ-OPP-2014-0653-0051 | EPA | None EPA-HQ-OPP-2014-0653 | Response to Public Comments Regarding the Pentachlorophenol Draft Risk Assessment | Supporting & Related Material | Comment Response | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:32:19Z | 0 | 0 | 09000064849cf912 | |||
| EPA-HQ-OPP-2014-0653-0050 | EPA | None EPA-HQ-OPP-2014-0653 | EPA 11/29/2018 Letter to Pentachlorophenol Registrants Regarding Pesticide Labeling Changes for Pentachlorophenol | Supporting & Related Material | Letter | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:31:47Z | 0 | 0 | 09000064849cf004 | |||
| EPA-HQ-OPP-2014-0653-0047 | EPA | None EPA-HQ-OPP-2014-0653 | Pesticide Registration Review: Proposed Interim Decisions for Several Wood Preservative Pesticides | Notice | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-05T05:00:00Z | 2021-05-20T03:59:59Z | 2021-05-28T01:00:15Z | 2021-04563 | 0 | 0 | 0900006484a60fed |
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;