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-1038" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-1038-0010 | EPA | None EPA-HQ-OPP-2007-1038 | 6/10/2008 - Addendum to Registration Review Scoping Document | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689f82 | ||||
| EPA-HQ-OPP-2007-1038-0012 | EPA | None EPA-HQ-OPP-2007-1038 | 4/10/2008 - Response to Public Comments on Registration Review Scoping Document for Human Health Assessments | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689f9d | ||||
| EPA-HQ-OPP-2007-1038-0008 | EPA | None EPA-HQ-OPP-2007-1038 | 6/13/2008 - Isoxaben Final Work Plan Registration Review | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689f6c | ||||
| EPA-HQ-OPP-2007-1038-0011 | EPA | None EPA-HQ-OPP-2007-1038 | 4/2/2008 - Response to Registrant Comments on the Preliminary Problem Formulation for Ecological Risk Assessment | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689f91 | ||||
| EPA-HQ-OPP-2007-1038-0013 | EPA | None EPA-HQ-OPP-2007-1038 | 8/1/2007 - Notice of Filing of Pesticide Petitions for Residues of Pesticide Chemicals in or on Various Commodities 7F7222 | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689fac | ||||
| EPA-HQ-OPP-2007-1038-0009 | EPA | None EPA-HQ-OPP-2007-1038 | Updated Isoxaben Reader’s Guide - Docket # EPA-HQ-OPP-2007-1038 | Supporting & Related Material | 2008-07-24T04:00:00Z | 2008 | 7 | 2011-04-04T14:07:53Z | 0 | 0 | 0900006480689f77 | ||||
| EPA-HQ-OPP-2007-1038-0007 | EPA | None EPA-HQ-OPP-2007-1038 | Dow AgroSciences Comments on Preliminary Work Plan March 19, 2008 (Registrant Comment) | Supporting & Related Material | 2008-05-28T04:00:00Z | 2008 | 5 | 2011-04-04T14:07:53Z | 0 | 0 | 09000064805faf1a |
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;