documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2009-0332" and posted_year = 2009 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-2009-0332-0008 | EPA | None EPA-HQ-OPP-2009-0332 | 10/22/09 - Methyl Parathion Final Work Plan | Supporting & Related Material | 2009-11-04T05:00:00Z | 2009 | 11 | 2010-12-15T15:24:20Z | 0 | 0 | 0900006480a4c87b | ||||
| EPA-HQ-OPP-2009-0332-0001 | EPA | None EPA-HQ-OPP-2009-0332 | Pesticide Registrations: Pesticide Dockets Opened for Review and Comment; Closure of Terpineols Registration Review Case (Methyl Parathion) | Notice | Federal Register Document | 2009-06-24T04:00:00Z | 2009 | 6 | 2009-06-24T04:00:00Z | 2009-08-25T03:59:59Z | 2010-12-15T15:24:20Z | E9-14735 | 0 | 0 | 09000064809d7903 |
| EPA-HQ-OPP-2009-0332-0007 | EPA | None EPA-HQ-OPP-2009-0332 | 4/20/09. Problem Formulation for the Environmental Fate and Ecological Risk, Endangered Species and Drinking Water Assessments in Support of the Registration Review of Methyl Parathion | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:20Z | 0 | 0 | 09000064809d00b1 | |||
| EPA-HQ-OPP-2009-0332-0005 | EPA | None EPA-HQ-OPP-2009-0332 | 3/24/09. Methyl Parathion: Registration Review Scoping Document for Human Health Assessments | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:19Z | 0 | 0 | 09000064809cfcf6 | |||
| EPA-HQ-OPP-2009-0332-0002 | EPA | None EPA-HQ-OPP-2009-0332 | 6/9/09. Methyl Parathion Summary Document | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:19Z | 0 | 0 | 09000064809cfcf3 | |||
| EPA-HQ-OPP-2009-0332-0003 | EPA | None EPA-HQ-OPP-2009-0332 | 10/7/08. Methyl Parathion Appendix A | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:19Z | 0 | 0 | 09000064809cfcf4 | |||
| EPA-HQ-OPP-2009-0332-0006 | EPA | None EPA-HQ-OPP-2009-0332 | 1/30/09. Updated Review of Methyl Parathion Incident Reports | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:19Z | 0 | 0 | 09000064809cfcfa | |||
| EPA-HQ-OPP-2009-0332-0004 | EPA | None EPA-HQ-OPP-2009-0332 | 10/7/08. Methyl Parathion SLUA | Supporting & Related Material | Letter, Memorandum, Email | 2009-06-24T04:00:00Z | 2009 | 6 | 2010-12-15T15:24:19Z | 0 | 0 | 09000064809cfcf5 |
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;