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-2010-0212" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_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-2010-0212-0129 | EPA | None EPA-HQ-OPP-2010-0212 | Copper Compounds Interim Registration Review Decision Case Nos. 0636, 0649, 4025, 4026 | Supporting & Related Material | Decision | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T20:14:19Z | 0 | 0 | 0900006483789665 | |||
| EPA-HQ-OPP-2010-0212-0128 | EPA | None EPA-HQ-OPP-2010-0212 | Letter from Rose Kyprianou, Branch Chief, Regulatory Management Branch II, Antimicrobials Division, Office of Pesticide Programs, US EPA to Anastasia Swearingen, Manager, ACC Copper Task Force, American Chemistry Council Center for Biocide Chemistries, dated September 17, 2018 | Supporting & Related Material | Letter | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T20:14:18Z | 0 | 0 | 0900006483789664 | |||
| EPA-HQ-OPP-2010-0212-0127 | EPA | None EPA-HQ-OPP-2010-0212 | Interim Registration Review Decisions and Case Closures for Several Pesticides | Notice | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2018-12-04T17:09:21Z | 2018-26354 | 0 | 0 | 090000648393be38 | ||
| EPA-HQ-OPP-2010-0212-0130 | EPA | None EPA-HQ-OPP-2010-0212 | Meeting with American Water Works Association (AWWA) on Non‐ag Aquatic Uses of Copper Pesticides | Supporting & Related Material | Meeting Materials | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T20:14:20Z | 0 | 0 | 0900006483789666 | |||
| EPA-HQ-OPP-2010-0212-0126 | EPA | None EPA-HQ-OPP-2010-0212 | U.S. EPA Antimicrobials Division (AD) Meeting with American Chemistry Council Copper Task Force (ACC CTF) | Supporting & Related Material | Meeting Materials | 2018-11-16T05:00:00Z | 2018 | 11 | 2018-11-16T18:58:17Z | 0 | 0 | 0900006483800469 | |||
| EPA-HQ-OPP-2010-0212-0123 | EPA | None EPA-HQ-OPP-2010-0212 | Meeting with American Chemistry Council Copper Task Force 2-7-18 | Supporting & Related Material | Meeting Materials | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T18:45:48Z | 0 | 0 | 0900006482ffe798 | |||
| EPA-HQ-OPP-2010-0212-0124 | EPA | None EPA-HQ-OPP-2010-0212 | Finalized EPA AFC Special Leach Study Method Guidance (March 2018) | Supporting & Related Material | Guidance | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T18:45:49Z | 0 | 0 | 090000648306d9de |
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;