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-2011-0932" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2011-0932-0062 | EPA | None EPA-HQ-OPP-2011-0932 | Thiobencarb Interim Registration Review Decision Case Number 2665 September 2019 | Supporting & Related Material | Decision | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-20T02:03:36Z | 0 | 0 | 0900006483fb3424 | |||
| EPA-HQ-OPP-2011-0932-0061 | EPA | None EPA-HQ-OPP-2011-0932 | Pesticide Registration Review: Interim Decisions for Several Pesticides and Case Closure for Meat Meal; Notice of Availability | Notice | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-19T05:00:00Z | 2019-12-20T02:03:48Z | 2019-27375 | 0 | 0 | 090000648423cb65 | ||
| EPA-HQ-OPP-2011-0932-0063 | EPA | None EPA-HQ-OPP-2011-0932 | Agency Response to Public comments on the Proposed Interim Decision for Thiobencarb | Supporting & Related Material | Comment Response | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-20T02:03:23Z | 0 | 0 | 0900006483fb3425 | |||
| EPA-HQ-OPP-2011-0932-0060 | EPA | None EPA-HQ-OPP-2011-0932 | Minutes from Conference Call with Tom Butts and Tom Barber with U of Arkansas Extension August 13 2019 Final | Supporting & Related Material | Meeting Materials | 2019-11-26T05:00:00Z | 2019 | 11 | 2019-11-27T01:51:28Z | 0 | 0 | 0900006484164010 | |||
| EPA-HQ-OPP-2011-0932-0057 | EPA | None EPA-HQ-OPP-2011-0932 | Field Worker Contact with Foliage Based on the Phenology of Rice | Supporting & Related Material | Technical Support Document | 2019-06-04T04:00:00Z | 2019 | 6 | 2019-06-05T01:08:09Z | 0 | 0 | 0900006483c94280 | |||
| EPA-HQ-OPP-2011-0932-0044 | EPA | None EPA-HQ-OPP-2011-0932 | Thiobencarb: Response to Comments Regarding the Registration Review Preliminary Ecological Risk Assessment of Thiobencarb Use on Rice | Supporting & Related Material | Comment Response | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-19T00:38:45Z | 0 | 0 | 09000064839ac637 | |||
| EPA-HQ-OPP-2011-0932-0045 | EPA | None EPA-HQ-OPP-2011-0932 | Thiobencarb. Response to Comments on HED’s Draft Human Health Risk Assessment in Support of Registration Review | Supporting & Related Material | Comment Response | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-19T00:38:27Z | 0 | 0 | 09000064839ac638 | |||
| EPA-HQ-OPP-2011-0932-0043 | EPA | None EPA-HQ-OPP-2011-0932 | Pesticide Product Registration: Registration Review Proposed Interim Decisions for Several Pesticides | Notice | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T04:00:00Z | 2019-05-18T03:59:59Z | 2019-06-29T01:04:35Z | 2019-04969 | 0 | 0 | 0900006483afc3ba | |
| EPA-HQ-OPP-2011-0932-0047 | EPA | None EPA-HQ-OPP-2011-0932 | Thiobencarb Usage and Benefits | Supporting & Related Material | Evaluation | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-19T00:37:49Z | 0 | 0 | 09000064839ac63a | |||
| EPA-HQ-OPP-2011-0932-0046 | EPA | None EPA-HQ-OPP-2011-0932 | Thiobencarb Proposed Interim Registration Review Decision Case Number 2665 | Supporting & Related Material | Decision | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-19T00:38:08Z | 0 | 0 | 09000064839ac639 |
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;