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-2011-0071" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2011-0071-0010 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | Discussion Regarding Data Submissions, Scheduling, and Label Language | Supporting & Related Material | Meeting Materials | 2021-07-02T04:00:00Z | 2021 | 7 | 2021-07-02T18:52:05Z | 0 | 0 | 0900006484ba0189 | |||
| EPA-HQ-OPP-2011-0071-0009 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | p-chloro-m-cresol (PCMC) & sodium p-chloro-m-cresolate (Na-PCMC) Amended Final Work Plan Registration Review Case Number 3046 & 5011 | Supporting & Related Material | Work Plan | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T18:40:11Z | 0 | 0 | 090000648294e0bb | |||
| EPA-HQ-OPP-2011-0071-0008 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | PCMC (p-Chloro-m-cresol) and Na-PCMC (Sodium p-chloro-m-cresolate): Dietary Exposure Scoping Document | Supporting & Related Material | Risk Assessment | 2017-07-03T04:00:00Z | 2017 | 7 | 2017-07-03T18:57:39Z | 0 | 0 | 09000064826b9181 | |||
| EPA-HQ-OPP-2011-0071-0007 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | p-chloro-m-cresol & sodium p-chloro-m-cresolate Final Work Plan | Supporting & Related Material | Work Plan | 2011-07-12T04:00:00Z | 2011 | 7 | 2011-07-12T20:04:57Z | 0 | 0 | 0900006480ec0558 | |||
| EPA-HQ-OPP-2011-0071-0001 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | Registration Reviews: Pesticide Dockets Opened for Review and Comment And Other Docket Actions, etc. | Notice | Federal Register Document | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T04:00:00Z | 2011-06-01T03:59:59Z | 2011-03-30T14:44:50Z | 2011-07321 | 0 | 0 | 0900006480c13bf6 |
| EPA-HQ-OPP-2011-0071-0002 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | p-chloro-m-cresol & sodium p-chloro-m-cresolate Summary Document | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T14:44:52Z | 0 | 0 | 0900006480c08fb7 | |||
| EPA-HQ-OPP-2011-0071-0004 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | Summary of Product Chemistry, Environmental Fate, and Ecotoxicity Data for the p-Chloro-m-Cresol and Sodium p-Chloro-m-Cresolate Registration Review Decision Document. | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T14:44:56Z | 0 | 0 | 0900006480c08fb9 | |||
| EPA-HQ-OPP-2011-0071-0003 | EPA | p-Chloro-m-cresol Registration Review Docket EPA-HQ-OPP-2011-0071 | Summary of Human Health Effects Data for the p-Chloro-m-cresol and Sodium p-Chloro-m-cresolate Registration Review Decision Document. | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T14:44:54Z | 0 | 0 | 0900006480c08fb8 |
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;