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-2009-0917" 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)
document_type 4
- Supporting & Related Material 5
- Notice 3
- Other 1
- Rule 1
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-2009-0917-0011 | EPA | None EPA-HQ-OPP-2009-0917 | Exemptions from the Requirement of a Tolerances: Complex Polymeric Polyhydroxy Acids | Rule | 2013-07-31T04:00:00Z | 2013 | 7 | 2013-07-31T04:00:00Z | 2013-10-01T03:59:59Z | 2013-07-31T17:33:49Z | 2013-18185 | 0 | 0 | 090000648138740f | |
| EPA-HQ-OPP-2009-0917-0007 | EPA | None EPA-HQ-OPP-2009-0917 | Public Participation for a New Active Ingredient, Complex Polymeric Polyhydroxy Acids | Other | Public Participation | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T04:00:00Z | 2013-05-18T03:59:59Z | 2013-05-02T21:01:49Z | 0 | 0 | 09000064812b2458 | |
| EPA-HQ-OPP-2009-0917-0010 | EPA | None EPA-HQ-OPP-2009-0917 | Carbon Power (EP) Draft Label FDscience Inc | Supporting & Related Material | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T21:01:51Z | 0 | 0 | 09000064812a0881 | ||||
| EPA-HQ-OPP-2009-0917-0009 | EPA | None EPA-HQ-OPP-2009-0917 | Carbon Power Concentrate (Manufacturing Use Product) Draft Label FBscien Inc | Supporting & Related Material | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T21:01:50Z | 0 | 0 | 09000064812a087f | ||||
| EPA-HQ-OPP-2009-0917-0008 | EPA | None EPA-HQ-OPP-2009-0917 | Biopesticides Registration Action Document for Complete Polymeric Polyhydroxy Acids (CPPA) | Supporting & Related Material | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T21:01:50Z | 0 | 0 | 09000064812a082f | ||||
| EPA-HQ-OPP-2009-0917-0006 | EPA | None EPA-HQ-OPP-2009-0917 | Receipt of a Pesticide Petition Filed: Residues of Complex Polymeric Polyhydroxy Acids in or on All Food Commodities; Correction and Reopening of Comment Period | Notice | 2010-08-18T04:00:00Z | 2010 | 8 | 2010-08-18T04:00:00Z | 2010-09-18T03:59:59Z | 2010-08-18T14:54:31Z | 2010-20450 | 0 | 0 | 0900006480b334bf | |
| EPA-HQ-OPP-2009-0917-0004 | EPA | None EPA-HQ-OPP-2009-0917 | Pesticide Products; Registration Applications | Notice | Federal Register Document | 2010-01-20T05:00:00Z | 2010 | 1 | 2010-01-20T05:00:00Z | 2010-02-20T04:59:59Z | 2010-08-16T14:54:49Z | 2010-00580 | 0 | 0 | 0900006480a80335 |
| EPA-HQ-OPP-2009-0917-0002 | EPA | None EPA-HQ-OPP-2009-0917 | Notice of Filing Floratine Biosciences | Supporting & Related Material | 2010-01-13T05:00:00Z | 2010 | 1 | 2010-08-16T14:54:38Z | 0 | 0 | 0900006480a7841d | ||||
| EPA-HQ-OPP-2009-0917-0001 | EPA | None EPA-HQ-OPP-2009-0917 | Receipt of Pesticide Petition: Residues of Polymeric Polyhydroxy Acid in or on All Food Commodities | Notice | Federal Register Document | 2010-01-13T05:00:00Z | 2010 | 1 | 2010-01-13T05:00:00Z | 2010-02-13T04:59:59Z | 2010-08-16T14:54:42Z | 2010-00490 | 0 | 0 | 0900006480a7c4dc |
| EPA-HQ-OPP-2009-0917-0003 | EPA | None EPA-HQ-OPP-2009-0917 | Petition proposing an exemption from the requirement of a tolerance for residues of Polymeric polyhydroxy scid | Supporting & Related Material | 2010-01-13T05:00:00Z | 2010 | 1 | 2010-08-16T14:54:43Z | 0 | 0 | 0900006480a7c992 |
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;