documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2011-0019" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-0019-0012 | EPA | None EPA-HQ-OPP-2011-0019 | Public Participation for the Registration Action for the New Active Ingredient Ammonium Sulfate | Other | Public Participation | 2011-07-05T04:00:00Z | 2011 | 7 | 2011-07-05T04:00:00Z | 2011-08-06T03:59:59Z | 2011-08-08T16:21:47Z | 0 | 0 | 0900006480eb997a | |
| EPA-HQ-OPP-2011-0019-0009 | EPA | None EPA-HQ-OPP-2011-0019 | FDA Letter to Geraldine E. Edens regarding Ammonium Sulfate | Supporting & Related Material | Letter | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:09Z | 0 | 0 | 0900006480eb742d | |||
| EPA-HQ-OPP-2011-0019-0005 | EPA | None EPA-HQ-OPP-2011-0019 | Nalco Co. Proposed Registration of Nalco 60620 Slimicide Containing Ammonium Sulfate for Use in Paper and Paperboard Water Systems: Ecological and Human Health Risk Assessments | Supporting & Related Material | Application | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:08Z | 0 | 0 | 0900006480eb7429 | |||
| EPA-HQ-OPP-2011-0019-0007 | EPA | None EPA-HQ-OPP-2011-0019 | Hazard Assessment for Ammonia and Monochloroamine | Supporting & Related Material | Environmental Assessment | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:08Z | 0 | 0 | 0900006480eb742b | |||
| EPA-HQ-OPP-2011-0019-0010 | EPA | None EPA-HQ-OPP-2011-0019 | Hazard Assessment of Ammonium Sulfate (Part 1) and Monochloramine (Part 2) | Supporting & Related Material | Environmental Assessment | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:09Z | 0 | 0 | 0900006480eb742e | |||
| EPA-HQ-OPP-2011-0019-0011 | EPA | None EPA-HQ-OPP-2011-0019 | Environmental Fate Assessment of Ammonium Sulfate and Chloramine | Supporting & Related Material | Environmental Assessment | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:10Z | 0 | 0 | 0900006480eb742f | |||
| EPA-HQ-OPP-2011-0019-0004 | EPA | None EPA-HQ-OPP-2011-0019 | Occupational Exposure Assessment for the Proposed Use of Ammonium Sulfate as Nalco 60620 in Pulp and Paper Mill Water Systems | Supporting & Related Material | Environmental Assessment | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:07Z | 0 | 0 | 0900006480eb7428 | |||
| EPA-HQ-OPP-2011-0019-0008 | EPA | None EPA-HQ-OPP-2011-0019 | Ecological Risk Assessment for Nalco 60620 which is an end-use product containing ammonium sulfate. The proposed registration of this product is for use in controlling microorganisms using an in-situ generating system for use in pulp and paper mills. | Supporting & Related Material | Environmental Assessment | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:09Z | 0 | 0 | 0900006480eb742c | |||
| EPA-HQ-OPP-2011-0019-0006 | EPA | None EPA-HQ-OPP-2011-0019 | Nalco Company's Proposed Registration of Nalco 60620 Slimicide Containing Ammonium Sulfate for Use in Pulp and Paper Water Systems: Chemistry, Chemical Processes, and Characterization of Transformation Products | Supporting & Related Material | Application | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:08Z | 0 | 0 | 0900006480eb742a | |||
| EPA-HQ-OPP-2011-0019-0003 | EPA | None EPA-HQ-OPP-2011-0019 | Decision Document for Registration of a Pesticide Product Containing the New Active Ingredient Ammonium Sulfate for Use in Pulp and Paper Mill Water Systems | Supporting & Related Material | Decision | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T19:47:07Z | 0 | 0 | 0900006480eb7427 | |||
| EPA-HQ-OPP-2011-0019-0001 | EPA | None EPA-HQ-OPP-2011-0019 | Pesticide Products; Registration Applications | Notice | Federal Register Document | 2011-02-02T05:00:00Z | 2011 | 2 | 2011-02-02T05:00:00Z | 2011-03-05T04:59:59Z | 2011-02-02T15:12:44Z | 2011-02156 | 0 | 0 | 0900006480bd7ed2 |
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;