documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2014-0823" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-0823-0026 | EPA | None EPA-HQ-OPP-2014-0823 | 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:30Z | 0 | 0 | 0900006484abcfce | |||
| EPA-HQ-OPP-2014-0823-0020 | EPA | None EPA-HQ-OPP-2014-0823 | Response to Comments Memorandum for Creosote Proposed Interim Registration Review Decision Case No. 0139 | Supporting & Related Material | Comment Response | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:33:11Z | 0 | 0 | 09000064849cf5a3 | |||
| EPA-HQ-OPP-2014-0823-0024 | EPA | None EPA-HQ-OPP-2014-0823 | A Qualitative Assessment on the Use, Usage, and Benefits of Coal Tar Creosote (PC# 025004) as a Wood Preservative | Supporting & Related Material | Risk Assessment | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:33:34Z | 0 | 0 | 09000064849d2d70 | |||
| EPA-HQ-OPP-2014-0823-0018 | EPA | None EPA-HQ-OPP-2014-0823 | 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-20T01:00:49Z | 2021-04563 | 0 | 0 | 0900006484a60fec | |
| EPA-HQ-OPP-2014-0823-0023 | EPA | None EPA-HQ-OPP-2014-0823 | Joint Public Comment Submitted by The Association of American Railroads and the American Short Line and Regional Railroad Association on the Creosote Draft Risk Assessment for Registration Review | Supporting & Related Material | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:33:45Z | 0 | 0 | 09000064849cf5a6 | ||||
| EPA-HQ-OPP-2014-0823-0019 | EPA | None EPA-HQ-OPP-2014-0823 | Creosote Proposed Interim Registration Review Decision Case Number 0139 | Supporting & Related Material | Decision | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:33:23Z | 0 | 0 | 09000064849cf5a2 | |||
| EPA-HQ-OPP-2014-0823-0022 | EPA | None EPA-HQ-OPP-2014-0823 | Conference Calls between EPA and members of the Creosote Council to discuss potential label changes proposed in the Registration Review Proposed Interim Decision (PID) for Creosote | Supporting & Related Material | Meeting Materials | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:32:51Z | 0 | 0 | 09000064849cf5a5 | |||
| EPA-HQ-OPP-2014-0823-0021 | EPA | None EPA-HQ-OPP-2014-0823 | EPA 11/29/2018 Letter to Creosote Registrants Regarding Pesticide Labeling Changes for Creosote | Supporting & Related Material | Letter | 2021-03-05T05:00:00Z | 2021 | 3 | 2021-03-07T01:33:00Z | 0 | 0 | 09000064849cf5a4 |
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;