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-2007-0234" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2007-0234-0006 | EPA | None EPA-HQ-OPP-2007-0234 | Fluazinam. Tolerance Petitions ... on Edible-Podded Beans (Subgroup 6-A, Except Peas), Shelled Succulent Beans (Subgroup 6-B, Except Peas), Shelled Dried Beans (Subgroup 6-C, Except Peas), Brassica (Cole) Vegetables (Group 5), Bushberries (Subgroup 13-B), and Ginseng. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T12:25:43Z | 0 | 0 | 090000648027e022 | ||||
| EPA-HQ-OPP-2007-0234-0007 | EPA | None EPA-HQ-OPP-2007-0234 | Tier I Estimated Drinking Waters Concentrations of Fluazinam and Total Residues for the Use in the Human Health Risk Assessment; IR4 Petition for the Use of Fluazinam on Edible-Podded Legume Vegetables (except peas), Bushberry (crop subgroup 13B), Brassica (Cole) Leafy Vegetables, Ginseng, and Dry, and Succulent Bean Crop Subgroup 6B (except peas) | Supporting & Related Material | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T12:25:44Z | 0 | 0 | 090000648027e030 | ||||
| EPA-HQ-OPP-2007-0234-0004 | EPA | None EPA-HQ-OPP-2007-0234 | Fluazinam: Human Health Risk Assessment for Proposed Use on Edible-Podded Beans, Shelled Succulent and Dried Beans, Brassica Leafy Vegetables, Bushberries, and Ginseng. | Supporting & Related Material | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T12:25:42Z | 0 | 0 | 090000648027e013 | ||||
| EPA-HQ-OPP-2007-0234-0005 | EPA | None EPA-HQ-OPP-2007-0234 | Fluazinam Acute and Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessments for the Section 3 Registration Action on Ginseng, Brassica Vegetables, Legume Vegetables, and Bushberries. | Supporting & Related Material | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T12:25:43Z | 0 | 0 | 090000648027e01a | ||||
| EPA-HQ-OPP-2007-0234-0003 | EPA | None EPA-HQ-OPP-2007-0234 | Fluazinam; Pesticide Tolerance | Rule | Federal Register Document | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T04:00:00Z | 2008-01-08T21:13:50Z | E7-20581 | 0 | 0 | 0900006480355988 | |
| EPA-HQ-OPP-2007-0234-0001 | EPA | None EPA-HQ-OPP-2007-0234 | Notice of Filing of Pesticide Petitions for Residues of Pesticide Chemicals in or on Various Commodities (Fluazinam) | Notice | Federal Register Document | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2007-05-31T03:59:59Z | 2008-01-08T21:06:00Z | E7-08180 | 0 | 0 | 0900006480231d83 |
| EPA-HQ-OPP-2007-0234-0002 | EPA | None EPA-HQ-OPP-2007-0234 | Fluazinam: Company Notice of Filing | Supporting & Related Material | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T14:16:53Z | 0 | 0 | 090000648021b597 |
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;