documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2005-0293" and posted_year = 2006 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-2005-0293-0043 | EPA | None EPA-HQ-OPP-2005-0293 | Meeting Minutes with Cypermethrin Stakeholders and OPP Staff | Supporting & Related Material | Meeting/Teleconference Materials | 2006-11-09T05:00:00Z | 2006 | 11 | 2006-11-09T20:21:04Z | 0 | 0 | 09000064801dfa2c | |||
| EPA-HQ-OPP-2005-0293-0036 | EPA | None EPA-HQ-OPP-2005-0293 | Revised Reregistration Eligibility Decision for Cypermethrin | Supporting & Related Material | 2006-09-07T18:06:24Z | 2006 | 9 | 2006-09-07T18:06:29Z | 0 | 0 | 09000064801c8360 | ||||
| EPA-HQ-OPP-2005-0293-0027 | EPA | None EPA-HQ-OPP-2005-0293 | Cypermethrin Reregistration Eligibility Decision; Notice of Availability | Notice | Federal Register Document | 2006-08-16T13:32:50Z | 2006 | 8 | 2006-08-16T13:32:50Z | 2006-10-17T03:59:59Z | 2008-01-08T21:10:18Z | E6-13164 | 0 | 0 | 09000064801b815f |
| EPA-HQ-OPP-2005-0293-0028 | EPA | None EPA-HQ-OPP-2005-0293 | Reader’s Guide to the Cypermethrin FDMS-Docket # OPP-2005-0293 | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b17b0 | ||||
| EPA-HQ-OPP-2005-0293-0034 | EPA | None EPA-HQ-OPP-2005-0293 | Cypermethrin and Zeta-Cypermethrin: Revised Occupational and Residential Exposure Assessment for the Reregistration Eligibility Decision Document | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b1872 | ||||
| EPA-HQ-OPP-2005-0293-0033 | EPA | None EPA-HQ-OPP-2005-0293 | Cypermethrin. Health Effects Division (HED) Phase 4 Response to Phase 3 Comments on the Cypermethrin Preliminary Reregistration Eligibility Decision (RED) and Supporting Memos. PC Code 109702; DP Barcodes D293402 & D293403 | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b1869 | ||||
| EPA-HQ-OPP-2005-0293-0031 | EPA | None EPA-HQ-OPP-2005-0293 | Response to Comments of Phase 3 Period on the Revised Draft EFED RED Chapter for Cypermethrin | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b1854 | ||||
| EPA-HQ-OPP-2005-0293-0030 | EPA | None EPA-HQ-OPP-2005-0293 | Phase 4 HED Risk Assessment for the Reregistration Eligibility Decision (RED). PC Code 109702; DP Barcode D293416. | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b1835 | ||||
| EPA-HQ-OPP-2005-0293-0029 | EPA | None EPA-HQ-OPP-2005-0293 | Reregistration Eligibility Decision for Cypermethrin | Supporting & Related Material | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b17da | ||||
| EPA-HQ-OPP-2005-0293-0032 | EPA | None EPA-HQ-OPP-2005-0293 | Addendum to the EFED RED Chapter for Cypermethrin | Supporting & Related Material | Audit, Assessment, Evaluation | 2006-08-16T04:00:00Z | 2006 | 8 | 2006-09-02T14:37:01Z | 0 | 0 | 09000064801b185f | |||
| EPA-HQ-OPP-2005-0293-0014 | EPA | None EPA-HQ-OPP-2005-0293 | Revised EFED Risk Assessment for the Reregistration Eligibility Decision (RED) on Cypermethrin After 30-Day “Error Only” Comment Period." | Supporting & Related Material | Audit, Assessment, Evaluation | 2006-01-04T05:00:00Z | 2006 | 1 | 2011-02-02T20:49:14Z | 0 | 0 | 090000648010701e |
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;