documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2012-0161" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0161-0094 | EPA | None EPA-HQ-OPP-2012-0161 | Alternatives Assessment for Aldicarb on Cotton, Dry Beans, Peanuts, Soybeans, Sugar Beets, and Sweet Potatoes | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-28T04:42:49Z | 0 | 0 | 090000648243e8dd | |||
| EPA-HQ-OPP-2012-0161-0093 | EPA | None EPA-HQ-OPP-2012-0161 | Proportion of Imported Oranges, Orange Juice, Potatoes, and Sweet Potatoes as a Component of Total Consumption in the United States and Review of Registrant submitted Percent Crop Treated Estimate for Sweet Potatoes: Data to Support the Human Dietary Risk Assessment of Aldicarb | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-28T04:43:10Z | 0 | 0 | 090000648243e8dc | |||
| EPA-HQ-OPP-2012-0161-0090 | EPA | None EPA-HQ-OPP-2012-0161 | Registration Reviews: Aldicarb, Azoxystrobin, Bifenazate, Chlorpyrifos-methyl, Ethalfluralin, and Pirimiphos-methyl; Interm Decisions | Notice | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T04:00:00Z | 2017-07-25T03:59:59Z | 2017-07-25T01:02:31Z | 2017-10669 | 0 | 0 | 0900006482616dd7 | |
| EPA-HQ-OPP-2012-0161-0092 | EPA | None EPA-HQ-OPP-2012-0161 | Response to Public Comments Received on the Draft Aldicarb Human Health Risk Assessment | Supporting & Related Material | Comment Response | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-28T04:43:05Z | 0 | 0 | 090000648243e8db | |||
| EPA-HQ-OPP-2012-0161-0095 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb: Response to Comments Regarding the Preliminary Ecological Risk Assessment for the Registration Review of Aldicarb | Supporting & Related Material | Comment Response | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-28T04:43:00Z | 0 | 0 | 090000648244cbb8 | |||
| EPA-HQ-OPP-2012-0161-0091 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb Proposed Interim Registration Review Decision Case Number 0140 | Supporting & Related Material | Decision | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-28T04:42:44Z | 0 | 0 | 090000648243e8da |
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;