documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2010-0228" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-2010-0228-0010 | EPA | None EPA-HQ-OPP-2010-0228 | 11-23-2010. Response to Comments on the Registration Review – Preliminary Problem Formulation for Ecological Risk, Environmental Fate, and Endangered Species Assessments for Linuron. | Supporting & Related Material | Letter, Memorandum, Email | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T20:09:13Z | 0 | 0 | 0900006480bc0879 | |||
| EPA-HQ-OPP-2010-0228-0011 | EPA | None EPA-HQ-OPP-2010-0228 | 10-01-2010. Linuron. Response to Public Comments on Registration Review Preliminary Workplan | Supporting & Related Material | Letter, Memorandum, Email | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T20:09:14Z | 0 | 0 | 0900006480bc087a | |||
| EPA-HQ-OPP-2010-0228-0012 | EPA | None EPA-HQ-OPP-2010-0228 | 09-13-2010. Updated Linuron Screening Level Usage Analysis (SLUA) | Supporting & Related Material | Letter, Memorandum, Email | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T20:09:16Z | 0 | 0 | 0900006480bc087b | |||
| EPA-HQ-OPP-2010-0228-0006 | EPA | None EPA-HQ-OPP-2010-0228 | 8/7/09. Linuron Screening Level Usage Analysis (SLUA) and Appendix A | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-12-28T16:59:05Z | 0 | 0 | 0900006480b0981a | |||
| EPA-HQ-OPP-2010-0228-0004 | EPA | None EPA-HQ-OPP-2010-0228 | 4/1/10. Linuron Human Health Assessment Scoping Document in Support of Registration Review | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-12-28T16:59:05Z | 0 | 0 | 0900006480b08d9b | |||
| EPA-HQ-OPP-2010-0228-0005 | EPA | None EPA-HQ-OPP-2010-0228 | 5/28/10. Linuron: Addendum to the Human Health Assessment Scoping Document in Support of Registration Review | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-12-28T16:59:05Z | 0 | 0 | 0900006480b09819 | |||
| EPA-HQ-OPP-2010-0228-0002 | EPA | None EPA-HQ-OPP-2010-0228 | 6/21/10. Linuron Summary Document-Registration Review: Initial Docket | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-12-28T16:59:04Z | 0 | 0 | 0900006480b08c82 | |||
| EPA-HQ-OPP-2010-0228-0003 | EPA | None EPA-HQ-OPP-2010-0228 | 4/2/10. Registration Review - Preliminary Problem Formulation for Ecological Risk, Environmental Fate, and Endangered Species Assessments for Linuron (PC Code 035506; DP Barcode D375455) | Supporting & Related Material | Letter, Memorandum, Email | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-12-28T16:59:04Z | 0 | 0 | 0900006480b08d9a | |||
| EPA-HQ-OPP-2010-0228-0001 | EPA | None EPA-HQ-OPP-2010-0228 | Registration Review; Pesticide Dockets Opened for Review and Comment | Notice | Federal Register Document | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T04:00:00Z | 2010-08-24T03:59:59Z | 2010-12-28T16:59:04Z | 2010-15212 | 0 | 0 | 0900006480b08bc0 |
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;