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-2016-0519" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-2016-0519-0044 | EPA | None EPA-HQ-OPP-2016-0519 | Notice of Unconditional Pesticide Registration No. 66330-403 for Kasugamycin Technical and final stamped label | Supporting & Related Material | Permit, Registration | 2018-03-07T05:00:00Z | 2018 | 3 | 2018-03-08T01:39:10Z | 0 | 0 | 0900006482f91fe8 | |||
| EPA-HQ-OPP-2016-0519-0043 | EPA | None EPA-HQ-OPP-2016-0519 | Notice of Unconditional Pesticide Registration No. 66330-404 for Kasumin 2L and final stamped label | Supporting & Related Material | Permit, Registration | 2018-03-07T05:00:00Z | 2018 | 3 | 2018-03-08T01:38:57Z | 0 | 0 | 0900006482f91fe2 | |||
| EPA-HQ-OPP-2016-0519-0038 | EPA | None EPA-HQ-OPP-2016-0519 | Pesticide Tolerances: Kasugamycin | Rule | Final Rule | 2018-03-06T05:00:00Z | 2018 | 3 | 2018-03-06T05:00:00Z | 2018-05-08T03:59:59Z | 2018-04-23T01:02:20Z | 2018-04529 | 0 | 0 | 0900006482f976e2 |
| EPA-HQ-OPP-2016-0519-0040 | EPA | None EPA-HQ-OPP-2016-0519 | Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessment for the Section 3 Registration of New Uses of the Antibiotic Fungicide on Cherry Subgroup 12-12A and Walnuts. | Supporting & Related Material | 2018-03-06T00:00:00Z | 2018 | 3 | 2018-03-07T20:26:53Z | 0 | 1 | 0900006482d9e591 | ||||
| EPA-HQ-OPP-2016-0519-0041 | EPA | None EPA-HQ-OPP-2016-0519 | Human Health Risk Assessment for the Proposed Section 3 Registration of New Uses of the Antibiotic Fungicide on Cherry Subgroup 12-12A and Walnuts. | Supporting & Related Material | 2018-03-06T00:00:00Z | 2018 | 3 | 2018-03-07T20:27:36Z | 0 | 1 | 0900006482d9e592 | ||||
| EPA-HQ-OPP-2016-0519-0039 | EPA | None EPA-HQ-OPP-2016-0519 | Drinking Water Assessment for IR-4 Petition for Use of Kasugamycin [EPA Reg. 66330-404] on Cherry Subgroup 12-12 and Walnuts | Supporting & Related Material | 2018-03-06T00:00:00Z | 2018 | 3 | 2018-03-07T20:25:33Z | 0 | 1 | 0900006482d9e590 | ||||
| EPA-HQ-OPP-2016-0519-0042 | EPA | None EPA-HQ-OPP-2016-0519 | Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | 2018-03-06T00:00:00Z | 2018 | 3 | 2018-03-07T20:28:55Z | 0 | 1 | 0900006482d9ed55 | ||||
| EPA-HQ-OPP-2016-0519-0037 | EPA | None EPA-HQ-OPP-2016-0519 | Final Registration Decision for the New Uses of the Active Ingredient Kasugamycin on Cherry (Crop Subgroup 12-12A) and Walnut | Supporting & Related Material | Decision | 2018-03-01T05:00:00Z | 2018 | 3 | 2018-03-07T20:20:39Z | 0 | 0 | 0900006482f6ceb6 |
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;