documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2012-0128" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, withdrawn, 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-2012-0128-0009 | EPA | None EPA-HQ-OPP-2012-0128 | Biopesticides Registration Action Document (BRAD) for Cellulose | Supporting & Related Material | 2012-10-18T04:00:00Z | 2012 | 10 | 2012-10-18T19:42:46Z | 0 | 0 | 0900006481147ae5 | ||||
| EPA-HQ-OPP-2012-0128-0003 | EPA | None EPA-HQ-OPP-2012-0128 | 04/25/12 - Science Review of Rodetrol performance against rats and mice. The active ingredient in the product is powdered corn cobs, containing 45.1% w/w cellulose. | Supporting & Related Material | Report | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T19:59:05Z | 0 | 0 | 090000648113a5ad | |||
| EPA-HQ-OPP-2012-0128-0004 | EPA | None EPA-HQ-OPP-2012-0128 | 10/03/12 - Science Review in Support of PCC 38-DD, Containing 100% Powdered Corn Cobs (37% Cellulose) As Its Active Ingredient. | Supporting & Related Material | Report | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T19:58:45Z | 0 | 0 | 090000648113a5ae | |||
| EPA-HQ-OPP-2012-0128-0002 | EPA | None EPA-HQ-OPP-2012-0128 | Public Participation for Registration of New Active Ingredient Cellulose | Other | Public Participation | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T04:00:00Z | 2012-11-01T03:59:59Z | 2012-11-01T02:00:50Z | 0 | 0 | 0900006481143c7e | |
| EPA-HQ-OPP-2012-0128-0007 | EPA | None EPA-HQ-OPP-2012-0128 | Draft Label for Rode-Trol | Supporting & Related Material | Report | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T19:59:25Z | 0 | 0 | 090000648113d632 | |||
| EPA-HQ-OPP-2012-0128-0005 | EPA | None EPA-HQ-OPP-2012-0128 | 10/03/12 - Science Review in Support of Rode-Trol, Containing 90.0% Powdered Corn Cobs (33.3% Cellulose) As Its Active Ingredient | Supporting & Related Material | Report | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T19:58:55Z | 0 | 0 | 090000648113a641 | |||
| EPA-HQ-OPP-2012-0128-0006 | EPA | None EPA-HQ-OPP-2012-0128 | Draft Label for PCC 38-DD MUP | Supporting & Related Material | Report | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T19:59:35Z | 0 | 0 | 090000648113d630 | |||
| EPA-HQ-OPP-2012-0128-0008 | EPA | None EPA-HQ-OPP-2012-0128 | Biopesticides Registration Action Document (BRAD) for Cellulose | Supporting & Related Material | 2012-10-16T00:00:00Z | 2012 | 10 | 2012-10-18T19:40:33Z | 0 | 1 | 0900006481143b7a | ||||
| EPA-HQ-OPP-2012-0128-0001 | EPA | None EPA-HQ-OPP-2012-0128 | Pesticide Products; Registration Applications | Notice | 2012-02-29T05:00:00Z | 2012 | 2 | 2012-02-29T05:00:00Z | 2012-03-31T03:59:59Z | 2012-02-29T16:16:50Z | 2012-04848 | 0 | 0 | 0900006480fc8f45 |
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;