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-2008-0687" and posted_year = 2019 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-2008-0687-0020 | EPA | None EPA-HQ-OPP-2008-0687 | Letter from Edward Cox, MD, MPH, Director, Office of Antimicrobial Products, Office of New Drugs, Center for Drug Evaluation and Research, U.S. Food and Drug Administration (FDA) to Michael L. Goodis, P.E., Director, Registration Division, Office of Pesticide Programs, U.S. Environmental Protection Agency (EPA) dated April 6, 2018 | Supporting & Related Material | Letter | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:10Z | 0 | 0 | 09000064839ca587 | |||
| EPA-HQ-OPP-2008-0687-0023 | EPA | None EPA-HQ-OPP-2008-0687 | Review of AgroSource’s Analysis of Streptomycin’s Safety with Regard to Its Microbiological Effect on Bacteria of Human Health Concern (FDA/CVM Guidance to Industry #152) for Registration Review | Supporting & Related Material | Report | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:14Z | 0 | 0 | 09000064839ca589 | |||
| EPA-HQ-OPP-2008-0687-0026 | EPA | None EPA-HQ-OPP-2008-0687 | Streptomycin. Occupational and Residential Exposure Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:17Z | 0 | 0 | 09000064839ca428 | |||
| EPA-HQ-OPP-2008-0687-0019 | EPA | None EPA-HQ-OPP-2008-0687 | Antibiotics (Kasugamycin, Oxytetracycline, Streptomycin) Screening Analysis of Toxicological Profiles to Consider Whether a Candidate Common Mechanism Group Can Be Established | Supporting & Related Material | Analysis | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:09Z | 0 | 0 | 09000064839ca586 | |||
| EPA-HQ-OPP-2008-0687-0025 | EPA | None EPA-HQ-OPP-2008-0687 | Streptomycin Tier I Update Review of Human Incidents and Epidemiology for Draft Risk Assessment | Supporting & Related Material | Risk Assessment | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:16Z | 0 | 0 | 09000064839ca58b | |||
| EPA-HQ-OPP-2008-0687-0028 | EPA | None EPA-HQ-OPP-2008-0687 | Transmittal of the Preliminary Environmental Fate and Ecological Risk Assessment for the Registration Review of Streptomycin Sulfate | Supporting & Related Material | Risk Assessment | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:19Z | 0 | 0 | 09000064839ca42a | |||
| EPA-HQ-OPP-2008-0687-0027 | EPA | None EPA-HQ-OPP-2008-0687 | Streptomycin. Section 3 Registration for Citrus Fruits Crop Group 10-10 | Supporting & Related Material | Risk Assessment | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:18Z | 0 | 0 | 09000064839ca429 | |||
| EPA-HQ-OPP-2008-0687-0021 | EPA | None EPA-HQ-OPP-2008-0687 | Letter from Elizabeth A. Rettie, D.V.M., Acting Director, Office of New Animal Drug Evaluation, Center for Veterinary Medicine to Michael L. Goodis, P.E., Director, Registration Division, Office of Pesticide Programs, U.S. Environmental Protection Agency (EPA) | Supporting & Related Material | Letter | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:11Z | 0 | 0 | 09000064839ca588 | |||
| EPA-HQ-OPP-2008-0687-0024 | EPA | None EPA-HQ-OPP-2008-0687 | Streptomycin Proposed Interim Registration Review Decision Case No. 0169 | Supporting & Related Material | Decision | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:45:15Z | 0 | 0 | 09000064839ca58a | |||
| EPA-HQ-OPP-2008-0687-0022 | EPA | None EPA-HQ-OPP-2008-0687 | 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-11-05T02:04:12Z | 2019-04969 | 0 | 0 | 0900006483afc3b8 |
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;