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-2007-0937" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 9
| 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-2007-0937-0012 | EPA | None EPA-HQ-OPP-2007-0937 | Para-dichlorobenzene; Issuance of Revised Reregistration | Notice | Federal Register Document | 2009-03-11T04:00:00Z | 2009 | 3 | 2009-03-11T04:00:00Z | 2009-03-11T17:49:53Z | E9-5241 | 0 | 0 | 0900006480905b3b | |
| EPA-HQ-OPP-2007-0937-0010 | EPA | None EPA-HQ-OPP-2007-0937 | Ingredient: para-Dichlorobenzene; Title: HED Chapter of the Reregistration Eligibility Decision Document (RED). Revised Version. 4/1/08 | Supporting & Related Material | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T13:34:44Z | 0 | 0 | 090000648081240c | ||||
| EPA-HQ-OPP-2007-0937-0011 | EPA | None EPA-HQ-OPP-2007-0937 | Reregistration Eligibility Decision for Para-dichlorobenzene - Revised December 2008 | Supporting & Related Material | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T13:34:46Z | 0 | 0 | 090000648082326f | ||||
| EPA-HQ-OPP-2007-0937-0004 | EPA | None EPA-HQ-OPP-2007-0937 | Paradichlorobenzene: Addendum to EFED’s Memorandum in Support of the Reregistration Eligibility Decision - 9/28/07 | Supporting & Related Material | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T13:25:19Z | 0 | 0 | 090000648036fdb8 | ||||
| EPA-HQ-OPP-2007-0937-0002 | EPA | None EPA-HQ-OPP-2007-0937 | Reregistration Eligibility Decision for Para-dichlorobenzene | Supporting & Related Material | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T13:25:18Z | 0 | 0 | 090000648036fdb0 | ||||
| EPA-HQ-OPP-2007-0937-0001 | EPA | None EPA-HQ-OPP-2007-0937 | Para-dichlorobenzene; Reregistration Eligibility Decision for Low-Risk Pesticide; Notice of Availability | Notice | Federal Register Document | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T05:00:00Z | 2008-02-12T04:59:59Z | 2008-01-08T21:22:02Z | E7-24082 | 0 | 0 | 0900006480378db9 |
| EPA-HQ-OPP-2007-0937-0003 | EPA | None EPA-HQ-OPP-2007-0937 | Paradichlorobenzene: EFED Memorandum in Support of the Reregistration Eligibility Decision - 5/8/2007 | Supporting & Related Material | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T13:25:19Z | 0 | 0 | 090000648036fdb4 | ||||
| EPA-HQ-OPP-2007-0937-0005 | EPA | None EPA-HQ-OPP-2007-0937 | Para-Dichlorobenzene: HED Chapter of the Reregistration Eligibility Decision Document (RED). PC Code: 061501, Case #: 3058, DP Barcode: D334021. - 9/27/07 | Supporting & Related Material | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T13:25:20Z | 0 | 0 | 090000648036fdc6 | ||||
| EPA-HQ-OPP-2007-0937-0006 | EPA | None EPA-HQ-OPP-2007-0937 | Para Dichlorobenzene: Occupational and Residential Exposure Assessment and Recommendations for the Reregistration Eligibility Decision (RED). -09/28/07 | Supporting & Related Material | 2007-12-12T05:00:00Z | 2007 | 12 | 2007-12-12T13:25:21Z | 0 | 0 | 090000648036fdce |
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;