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-2010-0241" 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)
document_type 2
agency_id 1
- EPA 8
| 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-2010-0241-0009 | EPA | None EPA-HQ-OPP-2010-0241 | Busan 74 (HPMTS) Interim Registration Review Decision Case Number 3033 | Supporting & Related Material | Decision | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:59:30Z | 0 | 0 | 09000064824280db | |||
| EPA-HQ-OPP-2010-0241-0008 | EPA | None EPA-HQ-OPP-2010-0241 | Registration Reviews: Interim Decisions and Case Closures | Notice | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T04:00:00Z | 2017-05-25T16:23:17Z | 2017-10668 | 0 | 0 | 09000064826137c7 | ||
| EPA-HQ-OPP-2010-0241-0007 | EPA | None EPA-HQ-OPP-2010-0241 | Busan 74 (HPMTS) Final Work Plan and Proposed Registration Review Decision | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T18:44:08Z | 0 | 0 | 0900006480babb57 | |||
| EPA-HQ-OPP-2010-0241-0006 | EPA | None EPA-HQ-OPP-2010-0241 | Registration Review Proposed Decisions: Busan 74 (HPMTS) and Nithiazine | Notice | Federal Register Document | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T05:00:00Z | 2011-02-23T04:59:59Z | 2011-01-04T18:33:48Z | 2010-32151 | 0 | 0 | 0900006480bbdf39 |
| EPA-HQ-OPP-2010-0241-0001 | EPA | None EPA-HQ-OPP-2010-0241 | Antimicrobial Pesticide Registration Review Dockets Opened for Review and Comment: Busan 74 (2-hydroxypropyl methanethiosulfonate); Chlorine Gas; and Dichromic Acid, et al. | Notice | Federal Register Document | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T04:00:00Z | 2010-08-24T03:59:59Z | 2010-08-16T14:58:33Z | 2010-14895 | 0 | 0 | 0900006480b08bfa |
| EPA-HQ-OPP-2010-0241-0003 | EPA | None EPA-HQ-OPP-2010-0241 | Busan 74 (HPMTS) Summary Document: Registration Review | Supporting & Related Material | Permit, Registration | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-08-16T14:58:22Z | 0 | 0 | 0900006480afde45 | |||
| EPA-HQ-OPP-2010-0241-0002 | EPA | None EPA-HQ-OPP-2010-0241 | Summary of Human Health Effects Data for the HPMTS Registration Review Decision Document | Supporting & Related Material | Data | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-08-16T14:58:14Z | 0 | 0 | 0900006480af1d52 | |||
| EPA-HQ-OPP-2010-0241-0004 | EPA | None EPA-HQ-OPP-2010-0241 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the HPMTS Registration Review Decision Document | Supporting & Related Material | Permit, Registration | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-08-16T14:58:22Z | 0 | 0 | 0900006480afde47 |
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;