documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2008-0766" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2008-0766-0009 | EPA | None EPA-HQ-OPP-2008-0766 | Mineral Acids Summary Document: Registration Review | Supporting & Related Material | 2008-12-18T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807e108f | ||||
| EPA-HQ-OPP-2008-0766-0004 | EPA | None EPA-HQ-OPP-2008-0766 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Phosphoric Acid Registration Review Decision Document | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddf35 | ||||
| EPA-HQ-OPP-2008-0766-0008 | EPA | None EPA-HQ-OPP-2008-0766 | Sulfuric acid on potato vines: Registration Review Scoping Document for Human Health Assessments | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddff2 | ||||
| EPA-HQ-OPP-2008-0766-0005 | EPA | None EPA-HQ-OPP-2008-0766 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Hydrochloric Acid Registration Review Decision Document | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddf4d | ||||
| EPA-HQ-OPP-2008-0766-0006 | EPA | None EPA-HQ-OPP-2008-0766 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Sodium Bisulfate Registration Review Decision Document | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddf99 | ||||
| EPA-HQ-OPP-2008-0766-0001 | EPA | None EPA-HQ-OPP-2008-0766 | Registration Review; Mineral Acids Docket Opened for Review and Comment | Notice | Federal Register Document | 2008-12-17T05:00:00Z | 2008 | 12 | 2008-12-17T05:00:00Z | 2009-03-18T03:59:59Z | 2018-10-09T18:51:05Z | E8-29975 | 0 | 0 | 09000064807def48 |
| EPA-HQ-OPP-2008-0766-0002 | EPA | None EPA-HQ-OPP-2008-0766 | Summary of Human Health Effects Data for the Mineral Acids Registration Review Decision Document | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddecb | ||||
| EPA-HQ-OPP-2008-0766-0003 | EPA | None EPA-HQ-OPP-2008-0766 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the Sulfuric Acid Registration Review Decision Document | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddeed | ||||
| EPA-HQ-OPP-2008-0766-0007 | EPA | None EPA-HQ-OPP-2008-0766 | Registration Review – Preliminary Problem Formulation for the Ecological Risk Assessment of Potato Desiccant Use of Sulfuric Acid | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2012-01-11T19:58:03Z | 0 | 0 | 09000064807ddfb9 |
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;