documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2006-0576" 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), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 10
| 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-2006-0576-0011 | EPA | None EPA-HQ-OPP-2006-0576 | Tetraconazole. Dietary Exposure and Risk Assessment. Application of Tetraconazole to Pecan, Sugar Beet, and Soybean. | Supporting & Related Material | 2007-04-11T04:00:00Z | 2007 | 4 | 2007-04-11T12:50:10Z | 0 | 0 | 090000648021b6b0 | ||||
| EPA-HQ-OPP-2006-0576-0008 | EPA | None EPA-HQ-OPP-2006-0576 | Tetraconazole; Pesticide Tolerance | Rule | Federal Register Document | 2007-04-11T04:00:00Z | 2007 | 4 | 2007-04-11T04:00:00Z | 2007-06-12T03:59:59Z | 2008-01-08T21:21:36Z | E7-06837 | 0 | 0 | 0900006480223fc5 |
| EPA-HQ-OPP-2006-0576-0009 | EPA | None EPA-HQ-OPP-2006-0576 | Projected Percent Crop Treated for the Fungicide Tetraconazole | Supporting & Related Material | 2007-04-11T04:00:00Z | 2007 | 4 | 2007-04-11T12:50:08Z | 0 | 0 | 090000648021b685 | ||||
| EPA-HQ-OPP-2006-0576-0010 | EPA | None EPA-HQ-OPP-2006-0576 | Tetraconazole: Human-Health Risk Assessment for Proposed Uses on Soybean, Sugar Beet, Peanut, Pecan, and Turf. | Supporting & Related Material | 2007-04-11T04:00:00Z | 2007 | 4 | 2007-04-11T12:50:09Z | 0 | 0 | 090000648021b69d | ||||
| EPA-HQ-OPP-2006-0576-0007 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing PP#576971 Isagro | Supporting & Related Material | Petition | 2007-03-26T04:00:00Z | 2007 | 3 | 2007-03-26T15:51:57Z | 0 | 0 | 0900006480219c16 | |||
| EPA-HQ-OPP-2006-0576-0004 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing Sipcam Agro USA (PP#9F6023 and PP#6F7084) | Supporting & Related Material | Petition | 2007-03-23T04:00:00Z | 2007 | 3 | 2007-03-23T13:45:53Z | 0 | 0 | 0900006480218cc3 | |||
| EPA-HQ-OPP-2006-0576-0005 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing Sipcam Agro USA (PP#9F5066) | Supporting & Related Material | Petition | 2007-03-23T04:00:00Z | 2007 | 3 | 2007-03-23T13:45:55Z | 0 | 0 | 0900006480218ccd | |||
| EPA-HQ-OPP-2006-0576-0006 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing (Duplicate Document) | Supporting & Related Material | Petition | 2007-03-23T04:00:00Z | 2007 | 3 | 2007-03-26T15:49:05Z | 0 | 0 | 0900006480218cd9 | |||
| EPA-HQ-OPP-2006-0576-0003 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing of Pesticide Petitions for Establishment of Regulations for Residues of Pesticide Chemicals in or on Various Commodities (Tetraconazole) | Notice | Federal Register Document | 2006-12-26T05:00:00Z | 2006 | 12 | 2006-12-26T05:00:00Z | 2007-01-20T04:59:59Z | 2008-01-08T21:13:13Z | E6-21710 | 0 | 0 | 09000064801efefa |
| EPA-HQ-OPP-2006-0576-0001 | EPA | None EPA-HQ-OPP-2006-0576 | Notice of Filing of a Pesticide Petition for Establishment of Regulations for Residues of Tetraconazole in or on Soybean and Poultry Commodities (Tetraconazole) | Notice | 2006-07-26T13:32:48Z | 2006 | 7 | 2006-07-26T13:32:48Z | 2006-08-26T03:59:59Z | 2008-01-08T21:08:38Z | E6-11829 | 0 | 0 | 09000064801a6a05 |
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;